phonograph/Cargo.toml

42 lines
1.4 KiB
TOML
Raw Normal View History

2025-10-01 22:37:11 -07:00
cargo-features = ["codegen-backend"]
2025-05-02 23:48:54 -07:00
[workspace]
2025-07-08 14:37:03 -07:00
resolver = "3"
members = ["phono-*"]
2025-07-08 14:37:03 -07:00
[workspace.package]
edition = "2024"
2025-11-18 20:38:01 -08:00
license = "AGPL-3.0-or-later"
license_file = "LICENSE"
version = "0.0.1"
2025-05-26 22:08:21 -07:00
[workspace.dependencies]
anyhow = { version = "1.0.91", features = ["backtrace"] }
2025-11-11 01:26:48 +00:00
bigdecimal = { version = "0.4.9", features = ["serde-json"] }
2025-05-26 22:08:21 -07:00
chrono = { version = "0.4.41", features = ["serde"] }
2025-05-02 23:48:54 -07:00
derive_builder = "0.20.2"
futures = "0.3.31"
phono-backends = { path = "./phono-backends" }
phono-models = { path = "./phono-models" }
phono-namegen = { path = "./phono-namegen" }
2025-05-02 23:48:54 -07:00
rand = "0.8.5"
redact = { version = "0.1.11", features = ["serde", "zeroize"] }
2025-07-08 14:37:03 -07:00
regex = "1.11.1"
reqwest = { version = "0.12.8", features = ["json"] }
serde = { version = "1.0.213", features = ["derive"] }
2025-05-02 23:48:54 -07:00
serde_json = "1.0.132"
2025-11-11 01:26:48 +00:00
sqlx = { version = "0.8.6", features = ["runtime-tokio", "tls-rustls-ring-native-roots", "postgres", "derive", "uuid", "chrono", "json", "macros", "bigdecimal"] }
2025-10-01 22:36:19 -07:00
strum = { version = "0.27.2", features = ["derive"] }
2025-05-26 22:08:21 -07:00
thiserror = "2.0.12"
2025-07-08 14:37:03 -07:00
tokio = { version = "1.42.0", features = ["full"] }
2025-05-02 23:48:54 -07:00
tracing = "0.1.40"
url = { version = "2.5.7", features = ["serde"] }
2025-07-08 14:37:03 -07:00
uuid = { version = "1.11.0", features = ["serde", "v4", "v7"] }
2025-05-02 23:48:54 -07:00
validator = { version = "0.20.0", features = ["derive"] }
2025-10-01 22:37:11 -07:00
[profile.dev]
# Use experimental compiler backend for ~30% faster dev builds.
codegen-backend = "cranelift"
# Skip generating debug info for ~10% faster dev builds.
debug = false