-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.41 KB
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
[package]
name = "celerity"
version = "0.1.0"
edition = "2024"
authors = ["shemtorga@gmail.com", "okechshem75@gmail.com"]
description = "Pure Rust sans-IO ZMTP 3.1 messaging core with Tokio TCP and Unix socket transports."
license = "MIT OR Apache-2.0"
repository = "https://github.com/ShemShadrack/celerity"
readme = "README.md"
keywords = ["zmtp", "zeromq", "tokio", "ipc", "messaging"]
categories = ["network-programming", "asynchronous", "command-line-utilities", "cryptography"]
[features]
default = []
tokio = ["dep:tokio"]
cli = ["tokio", "dep:clap"]
ipc = ["tokio"]
curve = [
"dep:chacha20poly1305",
"dep:hkdf",
"dep:rand_core",
"dep:sha2",
"dep:x25519-dalek",
"dep:zeroize",
]
[dependencies]
bitflags = "2.6"
bytes = "1.10"
thiserror = "2.0"
tokio = { version = "1.48", optional = true, features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time"] }
clap = { version = "4.5", optional = true, features = ["derive"] }
chacha20poly1305 = { version = "0.10", optional = true }
hkdf = { version = "0.12", optional = true }
rand_core = { version = "0.6", optional = true, features = ["getrandom"] }
sha2 = { version = "0.10", optional = true }
x25519-dalek = { version = "2.0", optional = true, default-features = false, features = ["static_secrets"] }
zeroize = { version = "1.8", optional = true }
libc = "0.2"
[[bin]]
name = "cel-cat"
path = "src/bin/cel_cat.rs"
required-features = ["cli"]