28 lines
670 B
TOML
28 lines
670 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"
|
|
base64 = "0.21.2"
|
|
colored = "2.0.0"
|
|
driftwood = "0.0.7"
|
|
femme = "2.2.1"
|
|
json = "0.12.4"
|
|
log = "0.4.19"
|
|
rand = "0.8.5"
|
|
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-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"
|