-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (65 loc) · 2.59 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
73
74
75
76
77
[workspace]
package.edition = "2021"
resolver = "2"
members = [
"tatami",
]
# this helps to sync used features so compile cache works better
[workspace.dependencies]
# https://lib.rs/crates/axum
# https://lib.rs/crates/axum-test
axum = { version = "0.7.3" }
axum-test = { version = "14.2.2" }
# https://lib.rs/crates/sqlx
# Railway private networking generates non-x.509v3 certificates, so we need to use native TLS
sqlx = { version = "0.7.3", features = ["runtime-tokio-native-tls", "postgres", "json", "uuid", "time"] }
# https://lib.rs/crates/redis
# https://lib.rs/crates/deadpool-redis
# Railway private networking generates non-x.509v3 certificates, so we need to use native TLS
redis = { version = "0.24.0", features = ["tokio-native-tls-comp"] }
deadpool = { version = "0.10.0" }
deadpool-redis = { version = "0.14.0", features = ["rt_tokio_1"] }
# https://lib.rs/crates/once_cell
# https://lib.rs/crates/regex
# https://lib.rs/crates/validator
once_cell = { version = "1.19.0" }
regex = { version = "1.10.2" }
validator = { version = "0.16.1", features = ["derive"] }
# https://lib.rs/crates/serde
# https://lib.rs/crates/serde_json
serde = { version = "1.0.193", features = ["derive"] }
serde_json = { version = "1.0.108" }
# https://docs.rs/time/0.3.31/time/
# https://lib.rs/crates/url
# https://lib.rs/crates/uuid
time = { version = "0.3.31", features = ["std", "formatting", "parsing", "serde"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = { version = "1.6.1", features = ["serde", "v4"] }
# https://lib.rs/crates/argon2
# https://lib.rs/crates/hmac
# https://lib.rs/crates/sha2
# https://lib.rs/crates/base64
# https://lib.rs/crates/rand
# https://lib.rs/crates/rand_seeder
argon2 = { version = "0.5.2" }
hmac = { version = "0.12.1" }
sha2 = { version = "0.10.8" }
base64 = { version = "0.21.7" }
rand = { version = "0.8.5" }
rand_seeder = { version = "0.2.3" }
# https://lib.rs/crates/sentry
# https://lib.rs/crates/tracing
# https://lib.rs/crates/tracing-subscriber
sentry = { version = "0.32.2", features = ["tracing", "tower-http", "tower-axum-matched-path"] }
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
# https://lib.rs/crates/dotenvy
dotenvy = { version = "0.15.7" }
# https://lib.rs/crates/tower
# https://lib.rs/crates/tower-http
# https://lib.rs/crates/tower-cookies
tower = { version = "0.4.13", features = ["util"] }
tower-http = { version = "0.5.0", features = ["fs", "trace", "cors"] }
tower-cookies = { version = "0.10.0", features = ["private"] }
# https://lib.rs/crates/tokio
tokio = { version = "1.35.1", features = ["full"] }