-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (39 loc) · 1.05 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
42
43
[package]
name = "quadpod"
version = "0.1.0"
edition = "2021"
license = "MIT"
[lib]
name = "quadpod"
[[bin]]
name = "quadpod"
path = "src/main.rs"
[dependencies]
async-trait = "0.1.91"
axum = "0.8.9"
base64 = "0.23.0"
bytes = "1.12.1"
clap = { version = "4.6.4", features = ["derive", "env", "string"] }
dpop-verifier = "4.4.0"
hex = "0.4.3"
http = "1.4.2"
josekit = "0.10.3"
object_store = "0.14.1"
oxigraph = { version = "0.5.9", features = ["rdf-12"] }
oxttl = "0.2.3"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "rustls"] }
rudof_lib = { version = "0.3.7", default-features = false }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
sha2 = "0.11.0"
thiserror = "2.0.19"
tokio = { version = "1.53.1", features = ["full"] }
toml = "0.9"
tower-http = { version = "0.6.11", features = ["trace"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
url = "2.5.8"
uuid = { version = "1.24.0", features = ["v4"] }
[dev-dependencies]
http-body-util = "0.1.4"
tower = { version = "0.5.3", features = ["util"] }