-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (56 loc) · 1.83 KB
/
Cargo.toml
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
58
59
60
61
[workspace.package]
edition = "2021"
version = "0.3.4"
license = "MIT"
homepage = "https://github.com/aeyoll/mailboar"
documentation = "https://github.com/aeyoll/mailboar"
description = "A web interface for Tiny MailCatcher, a MailCatcher clone"
repository = "https://github.com/aeyoll/mailboar"
[package]
name = "mailboar"
version.workspace = true
edition.workspace = true
description.workspace = true
license.workspace = true
homepage.workspace = true
documentation.workspace = true
repository.workspace = true
[workspace]
members = [
"crates/frontend",
"crates/backend",
]
resolver = "2"
[workspace.dependencies]
mailboar_backend = { path = "crates/backend", version = "0.3.4" }
mailboar_frontend = { path = "crates/frontend", version = "0.3.4" }
axum = "0.7.5"
env_logger = { version = "0.11.3", default-features = false }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5.2", features = ["fs", "trace", "cors"] }
tokio-util = "0.7.11"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dependencies]
mailboar_backend = { workspace = true }
mailboar_frontend = { workspace = true }
axum = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
tokio-util = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
structopt = { version = "0.3", default-features = false }
[profile.release]
lto = true # Enable Link Time Optimization.
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.