mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-06 01:40:12 -06:00
28 lines
782 B
TOML
28 lines
782 B
TOML
[package]
|
|
name = "trailbase-cli"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
license = "OSL-3.0"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "trail"
|
|
|
|
[features]
|
|
openapi = ["dep:utoipa", "dep:utoipa-swagger-ui"]
|
|
|
|
[dependencies]
|
|
axum = { version = "^0.8.1", features=["multipart"] }
|
|
chrono = "^0.4.38"
|
|
clap = { version = "^4.4.11", features=["derive", "env"] }
|
|
env_logger = { workspace = true }
|
|
trailbase = { workspace = true }
|
|
log = "^0.4.21"
|
|
mimalloc = { version = "^0.1.41", default-features = false }
|
|
serde = { version = "^1.0.203", features = ["derive"] }
|
|
serde_json = "^1.0.117"
|
|
tokio = { workspace = true }
|
|
utoipa = { version = "5.0.0-beta.0", features = ["axum_extras"], optional = true }
|
|
utoipa-swagger-ui = { version = "9.0.0", features = ["axum"], optional = true }
|
|
uuid = { workspace = true }
|