-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (26 loc) · 1.1 KB
/
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
[workspace]
members = ["firehose-pb"]
[package]
name = "near-firehose-indexer"
version = "2.4.0"
authors = ["StreamingFast Developers <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "~1.28", features = ["fs", "macros", "net", "rt-multi-thread", "sync", "time"] }
actix = "0.13.0"
clap = { version = "3.1.6", features = ["derive"] }
hex = { version = "0.4.2", features = ["serde"] }
openssl = { version = "^0.10.60", features = ["vendored"] }
openssl-probe = "0.1.4"
prost = "0.11.6"
prost-types = "0.11.6"
rkyv = "=0.7.38"
syn = { version = "2.0.87", features = ["extra-traits", "full"] }
tracing = { version = "0.1.36", features = ["std"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "fmt", "registry", "std"] }
curve25519-dalek = { version = "4.1.3", default-features = false }
near-indexer = { git = "https://github.com/near/nearcore", rev = "2.4.0" }
near-crypto = { git = "https://github.com/near/nearcore", rev = "2.4.0" }
[build-dependencies]
tonic-build = "0.8.4"