33 lines
875 B
TOML
33 lines
875 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/coronafs-server",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
rust-version = "1.75"
|
|
authors = ["PhotonCloud Contributors"]
|
|
repository = "https://github.com/photoncloud/photoncloud"
|
|
|
|
[workspace.dependencies]
|
|
axum = "0.8"
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.40", features = ["full"] }
|
|
toml = "0.8"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "deny"
|
|
|
|
[workspace.lints.clippy]
|
|
all = "warn"
|