-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.02 KB
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
[package]
name = "fletcher"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0"
[dependencies]
bcrypt = "0.17.1"
chrono = "0.4.41"
color-eyre = "0.6.5"
dotenvy = "0.15.7"
jsonwebtoken = "9.3.1"
maud = { version = "0.27.0", features = ["poem"] }
petgraph = "0.8.2"
poem = { version = "3.1.12", features = ["embed"] }
poem-openapi = { version = "5.1.16", features = ["chrono", "swagger-ui", "uuid"] }
rand = "0.9.2"
rust-embed = "8.7.2"
serde = "1.0.219"
serde_json = "1.0.143"
sqlx = { version = "0.8.6", features = ["chrono", "postgres", "runtime-tokio", "tls-rustls", "uuid"] }
strum = { version = "0.27.2", features = ["derive"] }
thiserror = "2.0.16"
tokio = { version = "1.47.1", features = ["rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
uuid = { version = "1.18.0", features = ["v4"] }
validator = "0.20.0"
[dev-dependencies]
poem = { version = "3.1.12", features = ["test"] }
pretty_assertions = "1.4.1"
scraper = "0.24.0"
[build-dependencies]
fs_extra = "1.3.0"
[workspace]
members = [
"key_hasher"
]