27 lines
574 B
TOML
27 lines
574 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"affluences-api",
|
|
"affluences-cli",
|
|
]
|
|
# Don't build the CLI tool by default
|
|
default-members = [
|
|
".",
|
|
"affluences-api",
|
|
]
|
|
|
|
[package]
|
|
name = "affy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
affluences-api = { path = "./affluences-api" }
|
|
tokio = { version = "1.28.1", features = ["full"] }
|
|
chrono = "*"
|
|
uuid = "*"
|
|
poise = "0.5.5"
|
|
async-minecraft-ping = "0.8.0"
|
|
diesel = { version = "2.0.4", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "r2d2"] }
|
|
diesel_migrations = { version = "2.0.0", features = [ "sqlite" ] }
|