rvault/Cargo.toml
C0ffeeCode 1accd45648
WIP feat (sealing): Implement basic sealing functionality
Currently, the key is just stored plainly in the database
2025-03-26 21:49:59 +01:00

41 lines
877 B
TOML

[package]
name = "rvault-server"
version = "0.1.0"
edition = "2024"
[dependencies]
log = "0.4.21"
env_logger = "0.11.3"
zeroize = { version = "1.7.0", features = ["zeroize_derive"] }
time = { version = "0.3.39", features = ["serde", "formatting"]}
tokio = { version = "1.37.0", features = ["full"] }
tower = { version = "0.5.2", features = [] }
axum = "0.8.1"
serde = "1.0.201"
serde_json = "1.0.117"
json-patch = "4.0.0"
# serde_with = "3.8.1"
dotenvy = "0.15.7"
aes-gcm-siv = "0.11.1"
# utoipa = { version = "4.2.0", features = ["axum_extras"] }
sqlx = { version = "0.8.3", features = [
"sqlite",
# "postgres",
# "any",
"macros",
"runtime-tokio",
"tls-rustls",
"time"
] }
[lints]
workspace = true
[workspace.lints.clippy]
uninlined_format_args = "warn"
correctness = "warn"
suspicious = "warn"
complexity = "warn"
perf = "warn"
style = "warn"