router/Cargo.toml

34 lines
754 B
TOML
Raw Permalink Normal View History

[package]
name = "router"
2022-02-01 03:17:21 +00:00
version = "0.1.1"
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
2020-09-20 21:26:40 +00:00
async-fs = "1.3.0"
async-process = "1.0.0"
2020-09-12 22:12:48 +00:00
async-trait = "0.1.40"
2021-02-07 23:10:36 +00:00
base64 = "0.13.0"
2022-02-01 02:31:49 +00:00
bcrypt = "0.10.1"
blocking = "1.0.0"
2021-05-07 17:14:23 +00:00
config = { version = "0.11.0", features = ["toml"] }
2021-02-07 23:10:36 +00:00
futures-lite = "1.8.0"
mime = "0.3"
once_cell = "1.4.1"
2021-02-07 23:10:36 +00:00
rand = "0.8.0"
regex = "1.3.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-02-07 23:10:36 +00:00
serde_qs = "0.8"
serde_with = "1.4.0"
sled = "0.34.3"
2021-02-07 23:10:36 +00:00
tide = "0.16.0"
[build-dependencies]
anyhow = "1.0"
2021-02-07 23:10:36 +00:00
ructe = { version = "0.13.0", features = ["sass", "mime03"] }