syndicate-rs/syndicate/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Normal View History

[package]
2021-08-13 01:40:48 +00:00
name = "syndicate"
version = "0.24.3"
authors = ["Tony Garnock-Jones <tonyg@leastfixedpoint.com>"]
edition = "2018"
2021-08-13 16:50:11 +00:00
description = "Syndicated Actor model for Rust, including network communication and Dataspaces."
homepage = "https://syndicate-lang.org/"
repository = "https://git.syndicate-lang.org/syndicate-lang/syndicate-rs"
license = "Apache-2.0"
[features]
vendored-openssl = ["openssl/vendored"]
[build-dependencies]
2022-10-26 11:41:46 +00:00
preserves-schema = "3.0"
[dependencies]
preserves = "3.0"
2022-10-26 11:41:46 +00:00
preserves-schema = "3.0"
2021-09-02 09:10:32 +00:00
tokio = { version = "1.10", features = ["io-util", "macros", "rt", "rt-multi-thread", "time"] }
tokio-util = "0.6"
bytes = "1.0"
2021-09-02 09:10:32 +00:00
futures = "0.3"
2021-09-02 09:10:32 +00:00
getrandom = "0.2"
hmac = "0.11"
lazy_static = "1.4"
parking_lot = "0.11"
2021-09-02 09:10:32 +00:00
sha2 = "0.9"
2021-09-02 09:10:32 +00:00
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2"
# Only used for vendored-openssl, which in turn is being used for cross-builds
openssl = { version = "0.10", optional = true }
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "bench_dataspace"
harness = false
2021-09-24 08:57:32 +00:00
[[bench]]
name = "ring"
harness = false
2022-10-26 11:45:48 +00:00
[package.metadata.workspaces]
independent = true