-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.1 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
[package]
name = "forcefield"
version = "0.1.0"
edition = "2024"
[lib]
name = "forcefield"
path = "src/lib.rs"
[[bin]]
name = "forcefield"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.102"
argon2 = "0.5.3"
askama = "0.16.0"
axum = { version = "0.8.9", features = ["macros"] }
axum-extra = { version = "0.12.6", features = ["cookie", "cookie-private"] }
base64 = "0.22.1"
config = { version = "0.15.22", features = ["toml"] }
cookie = { version = "0.18.1", features = ["private"] }
duration-str = "0.21.0"
futures = "0.3.32"
password-hash = { version = "0.5.0", features = ["std"] }
percent-encoding = "2.3.2"
serde = "1.0.228"
serde_json = "1.0.149"
time = { version = "0.3.47", features = ["serde"] }
tokio = { version = "1.52.1", features = ["full"] }
tower-http = { version = "0.6.8", features = ["fs"] }
opentelemetry = { version = "0.31", features = ["metrics"] }
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic", "metrics"] }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
tower_governor = "0.8"
url = { version = "2.5.8", features = ["serde"] }
[dev-dependencies]
tower = "0.5"