forked from Sifchain/airdrop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (41 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
[package]
name = "airdrop"
version = "0.1.0"
authors = ["utx0 <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.2.0", features = ["full"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.64"
sqlx = { version = "0.5.1", features = ["runtime-tokio-native-tls", "postgres"] }
anyhow = "1.0.38"
chrono = "0.4"
backoff = { version = "0.3.0", features =["tokio", "futures"] }
instant = "0.1.9"
egg-mode = { git ="https://github.com/egg-mode-rs/egg-mode.git", features = ["rustls"], default-features = false }
colored = "2"
csv = "1.1"
thiserror = "1.0"
[[bin]]
name = "import-token-sale-data"
path = "src/import_token_sale_submissions/main.rs"
[[bin]]
name = "import-atom-txs"
path = "src/import-atom-txs/main.rs"
[[bin]]
name = "import-rune-txs"
path = "src/import-rune-txs/main.rs"
[lib]
name = "utils"
path = "src/utils/lib.rs"
[[bin]]
name = "import-rune-pool-extract"
path = "src/import-rune-pool-extract/main.rs"
[[bin]]
name = "memo_cleaner"
path = "src/memo_cleaner/main.rs"
[[bin]]
name = "process-twitter-from-txs-records"
path = "src/process_twitter_from_txs_records/main.rs"