mirror of
https://tangled.org/tranquil.farm/tranquil-pds
synced 2026-02-09 05:40:09 +00:00
80 lines
2.8 KiB
TOML
80 lines
2.8 KiB
TOML
[package]
|
|
name = "tranquil-pds"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-or-later"
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
async-trait = "0.1.89"
|
|
aws-config = "1.8.12"
|
|
aws-sdk-s3 = "1.118.0"
|
|
axum = { version = "0.8.8", features = ["ws", "macros"] }
|
|
base32 = "0.5"
|
|
base64 = "0.22.1"
|
|
bcrypt = "0.17.1"
|
|
bytes = "1.11.0"
|
|
chrono = { version = "0.4.42", features = ["serde"] }
|
|
cid = "0.11.1"
|
|
dotenvy = "0.15.7"
|
|
futures = "0.3.30"
|
|
governor = "0.10"
|
|
hex = "0.4"
|
|
hkdf = "0.12"
|
|
hmac = "0.12"
|
|
infer = "0.19"
|
|
aes-gcm = "0.10"
|
|
jacquard = { version = "0.9.5", default-features = false, features = ["api", "api_bluesky", "api_full", "derive", "dns"] }
|
|
jacquard-axum = "0.9.6"
|
|
jacquard-repo = "0.9.6"
|
|
jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"] }
|
|
k256 = { version = "0.13.3", features = ["ecdsa", "pem", "pkcs8"] }
|
|
multibase = "0.9.1"
|
|
multihash = "0.19.3"
|
|
rand = "0.8.5"
|
|
regex = "1"
|
|
reqwest = { version = "0.12.28", features = ["json"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_bytes = "0.11.14"
|
|
serde_ipld_dagcbor = "0.6.4"
|
|
ipld-core = "0.4.2"
|
|
serde_json = "1.0.146"
|
|
serde_urlencoded = "0.7"
|
|
sha2 = "0.10.9"
|
|
subtle = "2.5"
|
|
p256 = { version = "0.13", features = ["ecdsa"] }
|
|
p384 = { version = "0.13", features = ["ecdsa"] }
|
|
ed25519-dalek = { version = "2.1", features = ["pkcs8"] }
|
|
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "json"] }
|
|
thiserror = "2.0.17"
|
|
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "time", "signal", "process"] }
|
|
tracing = "0.1.43"
|
|
tracing-subscriber = "0.3.22"
|
|
tokio-tungstenite = { version = "0.28.0", features = ["native-tls"] }
|
|
urlencoding = "2.1"
|
|
uuid = { version = "1.19.0", features = ["v4", "v5", "fast-rng"] }
|
|
iroh-car = "0.5.1"
|
|
image = { version = "0.25.9", default-features = false, features = ["jpeg", "png", "gif", "webp"] }
|
|
redis = { version = "1.0.1", features = ["tokio-comp", "connection-manager"] }
|
|
tower-http = { version = "0.6.8", features = ["fs", "cors"] }
|
|
hickory-resolver = { version = "0.24", features = ["tokio-runtime"] }
|
|
metrics = "0.24.3"
|
|
metrics-exporter-prometheus = { version = "0.16", default-features = false, features = ["http-listener"] }
|
|
bs58 = "0.5.1"
|
|
totp-rs = { version = "5", features = ["qr"] }
|
|
webauthn-rs = { version = "0.5.4", features = ["danger-allow-state-serialisation", "danger-user-presence-only-security-keys"] }
|
|
webauthn-rs-proto = "0.5.4"
|
|
zip = { version = "7.0.0", default-features = false, features = ["deflate"] }
|
|
tower = "0.5.2"
|
|
tower-layer = "0.3.3"
|
|
futures-util = "0.3.31"
|
|
http = "1.4.0"
|
|
[features]
|
|
external-infra = []
|
|
[dev-dependencies]
|
|
ciborium = "0.2"
|
|
ctor = "0.6.3"
|
|
testcontainers = "0.26.2"
|
|
testcontainers-modules = { version = "0.14.0", features = ["postgres"] }
|
|
wiremock = "0.6.5"
|
|
# urlencoding is also in dependencies, but tests use it directly
|