this repo has no description
1[package]
2name = "bspds"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7anyhow = "1.0.100"
8axum = "0.8.7"
9base64 = "0.22.1"
10bcrypt = "0.17.1"
11bytes = "1.11.0"
12chrono = { version = "0.4.42", features = ["serde"] }
13cid = "0.11.1"
14dotenvy = "0.15.7"
15jacquard = "0.9.3"
16jacquard-axum = "0.9.2"
17jacquard-repo = "0.9.2"
18jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"] }
19k256 = { version = "0.13.3", features = ["ecdsa", "pem", "pkcs8"] }
20multihash = "0.19.3"
21rand = "0.8.5"
22reqwest = { version = "0.12.24", features = ["json"] }
23serde = { version = "1.0.228", features = ["derive"] }
24serde_ipld_dagcbor = "0.6.4"
25serde_json = "1.0.145"
26sha2 = "0.10.9"
27sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "json"] }
28tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "time"] }
29tracing = "0.1.43"
30tracing-subscriber = "0.3.22"
31uuid = { version = "1.19.0", features = ["v4", "fast-rng"] }
32
33[dev-dependencies]
34testcontainers = "0.26.0"
35testcontainers-modules = { version = "0.14.0", features = ["postgres"] }