-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.05 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 = "neutron"
version = "0.0.2"
edition = "2021"
license = "MIT"
description = "A Rust client library for Pulsar"
repository = "https://github.com/klaatu01/neutron"
readme = "README.md"
keywords = ["pulsar", "client", "neutron" ]
[dependencies]
async-channel = "2.1.1"
async-trait = "0.1.77"
futures = "0.3.30"
serde = { version = "1.0.195", features = ["derive"] }
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "time", "io-util", "net"] }
url = "2.5.0"
protobuf = "3.3.0"
nom = "7.1.3"
bytes = "1.5.0"
crc32fast = "1.3.2"
crc32c = "0.6.4"
serde_json = { version = "1.0.112", optional = true }
log = "0.4.20"
env_logger = "0.11.1"
tokio-util = { version = "0.7.10", features = ["codec"] }
chrono = "0.4.33"
oauth2 = "4.4.2"
tokio-rustls = "0.25.0"
webpki-roots = "0.26.1"
base64 = "0.21.7"
reqwest = { version = "0.11.24", features = ["rustls", "json"] }
itertools = "0.12.1"
[build-dependencies]
protobuf-codegen = "3.3.0"
[dev-dependencies]
humantime = "2.1.0"
mockall = "0.12.1"
nanoid = "0.4.0"
[features]
json = ["serde_json"]