-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 700 Bytes
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
[package]
name = "rust_authentication"
version = "0.1.0"
edition = "2021"
[features]
redis = []
postgres = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# TODO optional deps
diesel = { version = "2.0", features = ["postgres"] }
rusqlite = { version = "0.32", features = ["bundled"] }
dotenvy = "^0.15"
rocket = { version = "0.5", features = ["json", "secrets"]}
serde = { version = "1.0", features = ["derive"] }
argon2 = "^0.5"
# v4 is uuids from random information
uuid = { version = "1", features = ["v4", "fast-rng"] }
redis = "0.26"
tracing = "0.1.40"
# tracing-subscriber = { version = "0.3", features = ["env-filter"] }