backend/Cargo.toml
alemi 70816e3a89
chore: bye tokio
lets see how long we last without tokio
2024-06-21 20:58:35 +02:00

30 lines
681 B
TOML

[workspace]
members = [
"migrations",
"server",
"model",
]
[package]
name = "scct-cli"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "scct"
path = "main.rs"
[dependencies]
tracing = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4.5", features = ["derive"] }
async-std = { version = "1.12", features = ["attributes"] }
sea-orm = { version = "0.12", features = ["runtime-async-std-native-tls", "sqlx-mysql", "sqlx-sqlite", "sqlx-postgres"] }
scct-migrations = { path = "migrations", optional = true }
scct-server = { path = "server", optional = true }
[features]
default = ["server", "migrations"]
migrations = ["dep:scct-migrations"]
server = ["dep:scct-server"]