-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (61 loc) · 1.54 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
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "email-view-tracker"
version = "0.1.19"
edition = "2021"
license = "AGPL-3.0"
publish = false
[profile.release]
codegen-units = 1
lto = true
[workspace]
members = [
".",
"entity",
"migration"
]
[dependencies]
actix-identity = "=0.8.0"
entity = { path = "entity" }
fern = "=0.7.0"
getrandom = "=0.2.15"
hex = "=0.4.3"
log = "=0.4.22"
markup = { git = "https://github.com/utkarshkukreti/markup.rs", rev = "c1dc693e0d3e312d52160c312961bf47f1cffbf7" }
migration = { path = "migration" }
once_cell = "=1.20.2"
serde = "=1.0.215"
thiserror = "=2.0.3"
time = "=0.3.36"
url = "=2.5.3"
[dependencies.actix-web]
version = "=4.9.0"
default-features = false
features = ["compress-brotli", "compress-gzip", "compress-zstd", "macros"]
[dependencies.actix-session]
version = "=0.10.1"
features = ["cookie-session"]
[dependencies.clap]
version = "=4.5.21"
default-features = false
features = ["std", "color", "help", "usage", "error-context", "suggestions", "derive", "env", "cargo"]
[dependencies.uuid]
version = "=1.11.0"
default-features = false
features = ["v4"]
[dependencies.sea-orm]
version = "=1.1.1"
default-features = false
features = ["sqlx-mysql", "sqlx-postgres", "runtime-actix-rustls"]
[dependencies.argon2]
version = "=0.5.3"
default-features = false
features = ["std", "password-hash"]
[dependencies.mini-moka]
version = "=0.10.3"
default-features = false
features = ["sync"]
[build-dependencies]
lightningcss = "=1.0.0-alpha.60"
proc-macro2 = "=1.0.89"
quote = "=1.0.37"
time = { version = "=0.3.36", features = ["macros", "formatting"] }