-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
30 lines (23 loc) · 960 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
[package]
edition = "2021"
name = "transaction-consumer"
version = "0.18.0"
[dependencies]
anyhow = "1"
futures = "0.3"
log = "0.4.14"
rdkafka = { version = "0.36.2", features = ["gssapi", "sasl"] }
url = "2.2.2"
tokio = { version = "1.17", features = ["sync", "fs", "rt", "macros"] }
nekoton = { git = "https://github.com/broxus/nekoton.git", default-features = false }
nekoton-abi = { git = "https://github.com/broxus/nekoton.git" }
ton_abi = { git = "https://github.com/broxus/ton-labs-abi" }
ton_block = { git = "https://github.com/broxus/ton-labs-block" }
ton_types = { git = "https://github.com/broxus/ton-labs-types" }
ton-block-compressor = { git = "https://github.com/broxus/ton-block-compressor" }
everscale-rpc-client = { git = "https://github.com/broxus/everscale-jrpc.git" }
[features]
vendored = ["rdkafka/gssapi-vendored"]
[target.'cfg(target_os = "macos")'.dependencies.rdkafka]
features = ["gssapi-vendored", "sasl"]
version = "0.36.2"