-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (46 loc) · 1.05 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
[package]
name = "sms4-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7"
axum-macros = "0.4"
libaccount = { version = "0.1", git = "https://github.com/subitlab-buf/libaccount.git" }
dmds = "0.4"
dmds-tokio-fs = "0.3"
tokio = { version = "1.35", features = [
"rt",
"macros",
"sync",
"fs",
"rt-multi-thread",
] }
tokio-util = { version = "0.7", features = ["io"] }
tracing = "0.1"
tracing-subscriber = "0.3"
lettre = { version = "0.11", default-features = false, features = [
"serde",
"smtp-transport",
"hostname",
"builder",
"tokio1-rustls-tls",
"tracing",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
time = { version = "0.3", features = ["serde-human-readable"] }
bytes = "1.5"
bincode = "1.3"
thiserror = "1.0"
rand = "0.8"
siphasher = "1.0"
highway = "1.1"
http-body-util = "0.1"
[dev-dependencies]
tower = "0.4"
serde_json = "1.0"
mime = "0.3"
[profile.release]
lto = "thin"