simplify_truths/Cargo.toml
2024-07-17 13:04:05 +02:00

19 lines
565 B
TOML

[package]
name = "simplify_truths"
version = "2.0.0"
edition = "2021"
authors = ["Martin Berg Alstad"]
[dependencies]
# Parsing
nom = "7.1.3"
# Async
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
# Serialization / Deserialization
serde = { version = "1.0.203", features = ["derive", "rc"] }
# API
axum = { version = "0.7.5", features = ["macros"] }
tower-http = { version = "0.5.2", features = ["cors"] }
lib = { git = "https://github.com/emberal/rust-lib", tag = "1.4.1-hotfix", features = ["axum", "iter", "nom", "serde", "derive"] }