-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (37 loc) · 1.23 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "fizyr-rpc"
description = "Native Rust implementation of the Fizyr RPC protocol"
version = "0.8.0"
authors = [
"Fizyr B.V. <[email protected]>",
"Maarten de Vries <[email protected]>",
]
license = "BSD-2-Clause OR Apache-2.0"
repository = "https://github.com/fizyr/fizyr-rpc"
documentation = "https://docs.rs/fizyr-rpc"
readme = "README.md"
publish = ["crates-io"]
keywords = ["rpc", "shared-memory"]
categories = ["asynchronous", "network-programming"]
rust-version = "1.65"
edition = "2021"
[features]
macros = ["fizyr-rpc-macros"]
tcp = ["tokio/net"]
unix-seqpacket = ["tokio-seqpacket"]
unix-stream = ["tokio/net"]
[dependencies]
filedesc = { version = "0.6.1" }
tokio = { version = "1.32.0", features = ["rt", "sync"] }
tokio-seqpacket = { version = "0.7.0", optional = true }
fizyr-rpc-macros = { version = "0.8.0", path = "macros", optional = true }
[dev-dependencies]
assert2 = "0.3.11"
clap = { version = "4.4.4", features = ["derive"] }
tokio = { version = "1.32.0", features = ["macros"] }
fizyr-rpc = { path = ".", features = ["unix-seqpacket", "unix-stream", "tcp"] }
memfile = "0.3.0"
[package.metadata.docs.rs]
features = ["macros", "tcp", "unix-stream", "unix-seqpacket"]
[workspace]
members = ["macros", "macros-tests"]