forked from dexterlaboss/car-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (82 loc) · 2.3 KB
/
Cargo.toml
File metadata and controls
92 lines (82 loc) · 2.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "car-gen"
version = "1.1.6"
description = "CAR file generator service"
authors = ["Aurimas Narkevicius <aurimas.n@dexterlab.com>"]
license = "AGPL-3"
repository = "https://github.com/dexterlaboss/ingestor-kafka-hdfs"
homepage = "https://dexterlab.com"
edition = "2021"
[dependencies]
bytes = "1.2"
clap = "2.33.1"
log = "0.4.17"
env_logger = "0.9.0"
envy = "0.4.2"
prost = "0.11.0"
prost-types = "0.11.1"
serde = "1.0.144"
serde_derive = "1.0.103"
#serde_json = "1.0.83"
serde_json = { version = "1.0.83", features = ["float_roundtrip"] }
borsh = "0.9.1"
borsh-derive = "0.9.1"
bs58 = "0.4.0"
base64 = "0.13.0"
console = "0.15.0"
pretty-hex = "0.3.0"
futures = "0.3.24"
#hdrs = "0.1.4"
thiserror = "1.0"
dotenv = "0.15.0"
bincode = "1.3.3"
hbase-thrift = "=1.1.0"
thrift = "0.15.0"
thrift-pool = "=1.4.0"
#hdfs = "0.0.4"
#chrono = { version = "0.4.22", features = ["serde"] }
backoff = { version = "0.4.0", features = ["tokio"] }
#solana-binary-encoder = "=1.2.2"
solana-block-decoder = "=3.0.1"
solana-clap-utils = "=3.0.10"
solana-sdk = "=3.0.0"
solana-storage-proto = "=3.0.10"
dexter-storage-proto-tx = "=3.0.1"
solana-version = "=3.0.10"
solana-transaction-status = "=3.0.10"
solana-storage-utils = "=3.0.1"
rust_decimal = "1.0"
hex = "0.4.3"
md5 = "0.7"
memcache = "0.17.2"
#opendal = { version = "0.36.0", default-features = false, features = ["services-hdfs"] }
anyhow = "1.0"
dexter-ipfs-car = "0.2.1"
#flate2 = "1.0"
#fs-hdfs3 = "0.1.12"
async-compression = { version = "0.4.18", features = ["tokio", "gzip"] }
tokio-util = { version = "0.7", features = ["io"] }
hdfs-native = "0.11"
async-trait = "0.1"
chrono = "0.4.39"
#redis = { version = "0.25", features = ["tokio-comp"] }
[dependencies.tokio]
features = ["rt-multi-thread", "macros", "io-util"]
version = "1.11.0"
[dependencies.rdkafka]
features = ["gssapi", "ssl", "sasl", "tokio"]
version = "0.29.0"
# git = "https://github.com/fede1024/rust-rdkafka"
# rev = "65520c820565f9882475cc29cd6d149940515324"
[dependency-overrides]
solana-sha256-hasher = "=3.0.0"
[[bin]]
name = "car-gen"
path = "src/main.rs"
[build-dependencies]
rustc_version = "0.4"
tonic-build = "0.8.4"
# windows users should install the protobuf compiler manually and set the PROTOC
# envar to point to the installed binary
[target."cfg(not(windows))".build-dependencies]
protobuf-src = "1.1.0"