21 lines
554 B
TOML
21 lines
554 B
TOML
[package]
|
|
name = "yggdrasil"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = [ "0xf8" ]
|
|
license = "GPL3.0-or-later"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.71"
|
|
colored = "2.0.0"
|
|
driftwood = "0.0.7"
|
|
ftlog = "0.2.7"
|
|
serde = { version = "1.0.164", features = ["derive"] }
|
|
sqlx = { version = "0.6.3", features = ["sqlite", "runtime-tokio-native-tls"] }
|
|
tide = "0.16.0"
|
|
time = "0.3.22"
|
|
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] }
|
|
toml = "0.7.4"
|