-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1.13 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
32
33
34
35
36
37
38
39
40
41
[package]
name = "inindexer"
version = "2.0.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/INTEARnear/inindexer"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/inindexer"
description = "A framework for building NEAR Protocol indexers"
[dependencies]
async-trait = "0.1.79"
log = "0.4.21"
near-indexer-primitives = "0.28.0"
serde_json = "1.0.115"
tokio-stream = "0.1.15"
tokio = { version = "1.37.0", features = ["signal", "fs", "rt", "sync"] }
reqwest = "0.12.4"
serde = { version = "1.0.198", features = ["derive"] }
semver = "1.0.22"
futures = "0.3"
tokio-util = "0.7.11"
fastnear-neardata-fetcher = { git = "https://github.com/fastnear/libs", branch = "flat-state" }
fastnear-primitives = { git = "https://github.com/fastnear/libs", branch = "flat-state" }
[dev-dependencies]
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "time"] }
simple_logger = "5.0.0"
temp-file = "0.1.8"
[[example]]
name = "watch-the-slime"
path = "examples/watch_the_slime.rs"
[[example]]
name = "ft-transfers"
path = "examples/ft_transfers.rs"
[[example]]
name = "download"
path = "examples/download.rs"