apub/examples/actix-web-example/Cargo.toml

23 lines
671 B
TOML
Raw Normal View History

2021-11-19 20:52:31 +00:00
[package]
name = "actix-web-example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = { version = "4.0.0-beta.11", default-features = false }
2021-12-05 21:19:45 +00:00
apub = { version = "0.2.0", path = "../../", features = ["with-actix-web", "with-awc", "with-rustcrypto"] }
2021-11-28 02:06:53 +00:00
async-trait = "0.1.51"
awc = { version = "3.0.0-beta.11", default-features = false, features = ["rustls"] }
2021-11-19 20:52:31 +00:00
dashmap = "4.0.2"
env_logger = "0.9.0"
example-types = { version = "0.1.0", path = "../example-types/" }
log = "0.4.6"
2021-11-28 02:06:53 +00:00
rand = "0.8"
rsa = "0.5.0"
2021-11-19 20:52:31 +00:00
serde = "1"
serde_json = "1"
thiserror = "1"
url = "2"