-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 798 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (31 loc) · 798 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
26
27
28
29
30
31
32
33
34
[package]
name = "askly"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "http"
path = "src/bin/http.rs"
[[bin]]
name = "askly"
path = "src/bin/shuttle.rs"
[dependencies]
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
warp = "0.3.6"
serde = { version = "1", features = ["derive"] }
uuid = { version = "1", features = ["v4", "serde"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sqlx = { version = "0.7", features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"uuid",
] }
rand = "0.8"
rust-argon2 = "1.0"
chrono = "0.4.19"
jsonwebtoken = "9"
dotenv = "0.15.0"
shuttle-runtime = "0.42.0"
shuttle-warp = "0.42.0"
shuttle-shared-db = { version = "0.42.0", features = ["postgres"] }