-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (40 loc) · 1.1 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
[package]
name = "nyanpasswd"
version = "0.1.0"
edition = "2021"
readme = "README.md"
authors = ["Vika Shleina <[email protected]>"]
license = "MirOS"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bcrypt = "0.13"
thiserror = "1.0.37"
tracing = "0.1.37"
rand = "0.8.5"
uuid = { version = "1.2.2", features = ["v4", "serde"] }
argon2 = { version = "0.4.1", features = ["std"] }
futures = "0.3.25"
sailfish = "0.5.0"
async-trait = "0.1.60"
regex = "1.7.0"
lazy_static = "1.4.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] }
[dependencies.chrono]
version = "0.4.23"
default-features = false
features = ["std", "clock", "serde"]
[dependencies.sqlx]
version = "0.6.2"
features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono"]
[dependencies.tokio]
version = "1.21.2"
features = ["net", "fs", "io-util", "rt-multi-thread", "macros"]
[dependencies.hyper]
version = "0.14.23"
features = ["server", "runtime", "http1"]
[dependencies.axum]
version = "0.6"
features = []
[dependencies.serde]
version = "1.0.147"
features = ["derive"]