syndicate-rs/syndicate-server/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2021-08-13 01:40:48 +00:00
[package]
name = "syndicate-server"
version = "0.45.0"
2021-08-13 01:40:48 +00:00
authors = ["Tony Garnock-Jones <tonyg@leastfixedpoint.com>"]
edition = "2018"
2021-08-13 16:50:11 +00:00
description = "Dataspace server."
homepage = "https://syndicate-lang.org/"
repository = "https://git.syndicate-lang.org/syndicate-lang/syndicate-rs"
license = "Apache-2.0"
2023-10-05 07:47:22 +00:00
[features]
jemalloc = ["dep:tikv-jemallocator"]
2021-08-28 16:50:55 +00:00
[build-dependencies]
2024-03-08 09:47:52 +00:00
preserves-schema = "5.995"
syndicate = { path = "../syndicate", version = "0.40.0"}
syndicate-schema-plugin = { path = "../syndicate-schema-plugin", version = "0.9.0"}
2021-08-28 16:50:55 +00:00
2021-08-13 01:40:48 +00:00
[dependencies]
2024-03-08 09:47:52 +00:00
preserves-schema = "5.995"
syndicate = { path = "../syndicate", version = "0.40.0"}
syndicate-macros = { path = "../syndicate-macros", version = "0.32.0"}
2021-08-13 01:40:48 +00:00
2021-10-04 12:40:39 +00:00
chrono = "0.4"
2021-09-02 09:10:32 +00:00
futures = "0.3"
lazy_static = "1.4"
noise-protocol = "0.1"
noise-rust-crypto = "0.5"
2021-09-02 09:10:32 +00:00
notify = "4.0"
structopt = "0.3"
2021-08-13 01:40:48 +00:00
2023-10-05 07:47:22 +00:00
tikv-jemallocator = { version = "0.5.0", optional = true }
2023-10-04 19:28:47 +00:00
2021-09-20 14:42:35 +00:00
tokio = { version = "1.10", features = ["io-std", "time", "process"] }
2021-09-02 09:10:32 +00:00
tokio-util = "0.6"
tokio-stream = "0.1"
2021-08-13 01:40:48 +00:00
2021-09-02 09:10:32 +00:00
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2"
hyper = { version = "0.14.27", features = ["server", "http1", "stream"] }
hyper-tungstenite = "0.11.1"
parking_lot = "0.12.1"
2022-10-26 11:45:48 +00:00
[package.metadata.workspaces]
independent = true