-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
32 lines (28 loc) · 954 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
[package]
name = "helium-etl-lite"
version = "0.1.0"
authors = ["Kyle Bales <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "helium_etl_lite"
path = "src/main.rs"
[dependencies]
helium-jsonrpc = { git = "https://github.com/dewi-alliance/helium-jsonrpc-rs", rev="82b87d43a84d4d228a4d4ea561907e3fc79e134a" }
helium-api = { git = "https://github.com/helium/helium-api-rs" }
tokio = { version = "1.5.0", features = ["full"] }
config = { version= "0.11.0", default-features=false, features=["toml"] }
serde = "1"
serde_derive = "1"
serde_json = "1"
http = "0.2.4"
thiserror = "1.0.25"
slog = "2.7"
slog-async = "2.5"
slog-term = "2.6"
triggered = "0.1"
refinery = { version = "0.5.0", features = ["tokio-postgres"] }
structopt = "0.3.22"
tokio-postgres = { version = "0.7.2", features = ["with-serde_json-1"] }
postgres-types = "0.2.2"
url = "2.2.2"