2023-04-04 21:12:46 +08:00
|
|
|
[workspace]
|
2023-07-04 00:48:43 +08:00
|
|
|
resolver = "2"
|
2023-04-04 21:12:46 +08:00
|
|
|
members = [
|
2023-07-04 00:48:43 +08:00
|
|
|
"crates/main",
|
2023-04-14 15:04:36 +08:00
|
|
|
"crates/jmap",
|
|
|
|
"crates/jmap-proto",
|
2023-06-14 03:52:13 +08:00
|
|
|
"crates/imap",
|
|
|
|
"crates/imap-proto",
|
2023-05-17 02:25:38 +08:00
|
|
|
"crates/smtp",
|
2023-06-30 00:51:26 +08:00
|
|
|
"crates/managesieve",
|
2024-05-22 17:28:35 +08:00
|
|
|
"crates/pop3",
|
2023-10-11 00:58:38 +08:00
|
|
|
"crates/nlp",
|
2023-04-04 21:12:46 +08:00
|
|
|
"crates/store",
|
2023-05-31 01:27:54 +08:00
|
|
|
"crates/directory",
|
2023-04-14 15:04:36 +08:00
|
|
|
"crates/utils",
|
2024-03-22 03:07:21 +08:00
|
|
|
"crates/common",
|
2024-07-12 00:44:51 +08:00
|
|
|
"crates/trc",
|
2023-07-04 00:48:43 +08:00
|
|
|
"crates/cli",
|
2023-04-04 21:12:46 +08:00
|
|
|
"tests",
|
|
|
|
]
|
2023-07-04 00:48:43 +08: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
|