anon/Cargo.toml

19 lines
500 B
TOML
Raw Permalink Normal View History

2024-02-25 18:59:24 +01:00
[package]
name = "anon"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = { version = "1.8.0", features = ["attributes"] }
2024-02-26 22:22:28 +01:00
tide = { version = "0.16.0", features = [] }
2024-02-25 18:59:24 +01:00
serde = { version = "1.0", features = ["derive"] }
2024-02-26 22:22:28 +01:00
serde_json = "1.0"
2024-06-01 22:44:32 +02:00
serde_yaml = "0.9.34"
2024-02-25 18:59:24 +01:00
ring = { version = "0.17.8", features = ["std"] }
anyhow = "1.0.70"
base64 = "0.21.0"
hex = "0.4.3"
2024-09-13 23:07:22 +02:00
tide-serve-dir-macro = "0.2"