jetstream/Cargo.toml

61 lines
1.4 KiB
TOML
Raw Normal View History

2024-03-11 17:45:49 +00:00
[package]
name = "jetstream"
2024-03-21 19:57:55 +00:00
version = "0.6.0"
2024-03-11 17:45:49 +00:00
edition = "2021"
2024-03-13 16:38:31 +00:00
description = "Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC."
2024-03-13 18:02:25 +00:00
license = "BSD-3-Clause"
2024-03-13 18:54:24 +00:00
repository = "https://github.com/sevki/jetstream"
2024-03-13 16:38:31 +00:00
2024-03-11 17:45:49 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-13 16:38:31 +00:00
futures = "0.3.30"
2024-03-21 19:57:55 +00:00
jetstream_p9_wire_format_derive = { path = "./third_party/p9_wire_format_derive", version = "0.6.0" }
jetstream_p9 = { version = "0.6.0", path = "./third_party/rust-p9" }
2024-03-13 16:38:31 +00:00
tokio = { version = "1.35.1", features = ["full"] }
anyhow = "1.0.81"
async-trait = "0.1.78"
2024-03-13 16:38:31 +00:00
libc = "0.2.152"
s2n-quic = "1.34.0"
2024-03-13 16:38:31 +00:00
genfs = "0.1.4"
tokio-stream = { version = "0.1.15", features = ["full"] }
2024-03-13 16:38:31 +00:00
async-stream = "0.3.5"
clap = "4.5.3"
2024-03-13 16:38:31 +00:00
tokio-util = { version = "0.7.10", features = ["full"] }
tmpdir = "1.0.0"
x509-certificate = "0.23.1"
crc64 = "2.0.0"
tuple-map = "0.4.0"
futures-util = "0.3.30"
colored = "2.1.0"
serde = "1.0.196"
lazy_static = "1.4.0"
tower = "0.4.13"
bytes = "1.5.0"
slog = "2.7.0"
slog-term = "2.9.1"
slog-scope = "4.4.0"
termcolor = "1.4.1"
parking_lot = "0.12.1"
crc16 = "0.4.0"
slog-envlogger = "2.2.0"
2024-03-21 19:57:36 +00:00
tokio-vsock = "0.5.0"
2024-03-13 16:38:31 +00:00
[features]
filesystem = []
client = []
2024-03-13 16:38:31 +00:00
[build-dependencies]
bindgen = "0.69"
2024-03-13 16:38:31 +00:00
pkg-config = "0.3"
which = "6.0.0"
2024-03-13 16:38:31 +00:00
[dev-dependencies]
2024-03-13 17:04:01 +00:00
[workspace]
members = [
"third_party/rust-p9",
"third_party/p9_wire_format_derive",
2024-03-14 17:11:02 +00:00
]