trailbase/trailbase-cli/Cargo.toml
Sebastian Jeltsch 2803de7567 Re-re-license from AGPLv3 to the weaker copyleft OSL-3.0.
After spending too much time researching licenses, my laymen
understanding makes me feel that OSL-3.0 will be a better match given
TrailBase's rare dual use as a standalone backend or framework.

It tried to outline the reasoning in the README.md. I would appreciate
input from anyone more experienced with licenses.
For now, I would like to turn my attention back to more technical issues
:hide:.
2024-11-02 12:35:10 +01:00

28 lines
919 B
TOML

[package]
name = "trailbase-cli"
version = "0.1.0"
edition = "2021"
license = "OSL-3.0"
[[bin]]
name = "trail"
[features]
openapi = ["dep:utoipa", "dep:utoipa-swagger-ui"]
[dependencies]
axum = { version = "^0.7.5", features=["multipart"] }
chrono = "^0.4.38"
clap = { version = "^4.4.11", features=["derive", "env"] }
env_logger = "^0.11.3"
trailbase-core = { path = "../trailbase-core" }
libsql = { 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 = { version = "^1.38.0", features=["macros", "rt-multi-thread", "fs", "signal"] }
tracing-subscriber = "0.3.18"
utoipa = { version = "5.0.0-beta.0", features = ["axum_extras"], optional = true }
utoipa-swagger-ui = { version = "8.0.1", features = ["axum"], optional = true }
uuid = { version = "^1.8.0", features = ["v4", "serde"] }