-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 891 Bytes
/
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
[package]
name = "nakji-connector"
version = "0.1.0"
edition = "2021"
authors = ["Nakji Network"]
description = "A Rust implementation of nakji-connector."
repository = "https://github.com/nakji-network/connector-rust"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rdkafka = { version = "0.29.0", features = ["cmake-build"] }
log = "0.4"
env_logger = "0.10.0"
protobuf = "3.2.0"
protobuf-json-mapping = "3.2.0"
semver = "1.0"
thiserror = "1.0"
config = "0.13.0"
serde = "1.0"
serde_yaml = "0.9"
serde_json = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
walkdir = "2"
[dev-dependencies]
ethers = { version = "2", features = ["ws", "rustls"] }
tokio = { version = "1", features = ["full"] }
eyre = "0.6"
[[example]]
name = "etheruem-connector"
path = "examples/ethereum/ethereum.rs"