yggdrasil/Cargo.toml

47 lines
1.0 KiB
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"
argparse = "0.2.2"
async-std = { version = "1.12.0", features = ["attributes"] }
base64 = "0.21.2"
bcrypt = "0.14.0"
colored = "2.0.0"
dialoguer = { version = "0.10.4", default-features = false, features = ["password"] }
dotenvy = "0.15.7"
driftwood = "0.0.7"
femme = "2.2.1"
futures = "0.3.28"
json = "0.12.4"
log = "0.4.19"
once_cell = "1.18.0"
rand = "0.8.5"
random-string = "1.0.0"
regex = "1.8.4"
rsa = "0.9.2"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.97"
sha2 = "0.10.7"
sqlx = { version = "0.6.3", features = ["sqlite", "runtime-async-std-native-tls"] }
tide = "0.16.0"
time = "0.3.22"
toml = "0.7.4"
uuid = { version = "1.3.4", features = ["v4", "fast-rng"] }
# Server
[[bin]]
name = "yggdrasil"
path = "src/main.rs"
# Database UI
[[bin]]
name = "dbtool"
path = "src/main_dbtool.rs"