-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
57 lines (52 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[workspace]
resolver = "2"
members = [
"crates/rustmail-smtp",
"crates/rustmail-storage",
"crates/rustmail-api",
"crates/rustmail-server",
"crates/rustmail-tui",
]
[workspace.package]
version = "0.2.2"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustmailapp/rustmail"
homepage = "https://github.com/rustmailapp/rustmail"
readme = "README.md"
[workspace.dependencies]
tokio = { version = "1.44", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ulid = { version = "1.2", features = ["serde"] }
mail-parser = "0.11"
axum = { version = "0.8", features = ["ws"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "trace", "set-header", "compression-gzip"] }
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "sqlite", "macros"] }
clap = { version = "4.6", features = ["derive", "env"] }
toml = "0.8"
lettre = { version = "0.11", default-features = false, features = ["tokio1-rustls-tls", "smtp-transport", "builder"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
rust-embed = { version = "8.11", features = ["mime-guess", "include-exclude"] }
mime_guess = "2.0"
time = { version = "0.3", features = ["formatting", "macros"] }
dirs = "6.0"
rustmail-smtp = { path = "crates/rustmail-smtp", version = "0.2.2" }
rustmail-storage = { path = "crates/rustmail-storage", version = "0.2.2" }
rustmail-api = { path = "crates/rustmail-api", version = "0.2.2" }
rustmail-tui = { path = "crates/rustmail-tui", version = "0.2.2" }
[workspace.metadata.release]
shared-version = "workspace"
tag-name = "v{{version}}"
consolidate-commits = true
dependent-version = "upgrade"
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
panic = "abort"