myoauth/Cargo.toml

19 lines
577 B
TOML
Raw Normal View History

[package]
name = "oauth"
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-03-30 17:10:29 +08:00
uuid = { verion = "1.0.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
rand = "0.8.5"
crypto-hash = "0.3.4"