2023-04-04 13:12:46 +00:00
|
|
|
[workspace]
|
2023-07-03 16:48:43 +00:00
|
|
|
resolver = "2"
|
2023-04-04 13:12:46 +00:00
|
|
|
members = [
|
2023-07-03 16:48:43 +00:00
|
|
|
"crates/main",
|
2023-04-14 07:04:36 +00:00
|
|
|
"crates/jmap",
|
|
|
|
"crates/jmap-proto",
|
2023-06-13 19:52:13 +00:00
|
|
|
"crates/imap",
|
|
|
|
"crates/imap-proto",
|
2023-05-16 18:25:38 +00:00
|
|
|
"crates/smtp",
|
2023-06-29 16:51:26 +00:00
|
|
|
"crates/managesieve",
|
2024-05-22 09:28:35 +00:00
|
|
|
"crates/pop3",
|
2023-10-10 16:58:38 +00:00
|
|
|
"crates/nlp",
|
2023-04-04 13:12:46 +00:00
|
|
|
"crates/store",
|
2023-05-30 17:27:54 +00:00
|
|
|
"crates/directory",
|
2023-04-14 07:04:36 +00:00
|
|
|
"crates/utils",
|
2024-03-21 19:07:21 +00:00
|
|
|
"crates/common",
|
2024-07-11 16:44:51 +00:00
|
|
|
"crates/trc",
|
2023-07-03 16:48:43 +00:00
|
|
|
"crates/cli",
|
2023-04-04 13:12:46 +00:00
|
|
|
"tests",
|
|
|
|
]
|
2023-07-03 16:48:43 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 0
|
|
|
|
debug = 1
|
|
|
|
codegen-units = 4
|
|
|
|
lto = false
|
|
|
|
incremental = true
|
|
|
|
panic = 'unwind'
|
|
|
|
debug-assertions = true
|
|
|
|
overflow-checks = false
|
|
|
|
rpath = false
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
incremental = false
|
|
|
|
panic = 'unwind'
|
|
|
|
debug-assertions = false
|
|
|
|
overflow-checks = false
|
|
|
|
rpath = false
|
|
|
|
#strip = true
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 0
|
|
|
|
debug = 1
|
|
|
|
#codegen-units = 16
|
|
|
|
lto = false
|
|
|
|
incremental = true
|
|
|
|
debug-assertions = true
|
|
|
|
overflow-checks = true
|
|
|
|
rpath = false
|
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
incremental = false
|
|
|
|
debug-assertions = false
|
|
|
|
overflow-checks = false
|
|
|
|
rpath = false
|