myoauth/Cargo.toml

21 lines
624 B
TOML
Raw Normal View History

[package]
2024-04-02 11:15:12 +08:00
name = "myoauth"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tide = "0.16.0"
async-std = { version = "1.8.0", features = ["attributes"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37.0", features = ["full"] }
2024-03-30 17:10:29 +08:00
tokio-postgres = { version = "0.7.10", features = ["with-uuid-1"] }
futures = "0.3.30"
2024-04-02 11:15:12 +08:00
uuid = { version = "1.0.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
2024-03-30 17:10:29 +08:00
rand = "0.8.5"
crypto-hash = "0.3.4"
2024-04-13 16:40:03 +08:00
lazy_static = "1.4.0"
async-ctrlc = "1.2.0"