This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
generated from hack-ink/rust-initializer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (45 loc) · 1.68 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]
authors = ["Xavier Lau <[email protected]>"]
build = "build.rs"
description = "A bot for Polkadot parachain auction."
edition = "2021"
homepage = "https://hack.ink/slothunter"
license = "GPL-3.0"
name = "slothunter"
readme = "README.md"
repository = "https://github.com/hack-ink/slothunter"
version = "0.2.1"
[profile.ci-dev]
incremental = false
inherits = "dev"
[profile.ci-release]
inherits = "release"
lto = true
[features]
node-test = []
[build-dependencies]
# crates.io
vergen = { version = "8.3", features = ["build", "cargo", "git", "gitcl"] }
[dependencies]
# crates.io
anyhow = { version = "1.0" }
app_dirs2 = { version = "2.5" }
array-bytes = { version = "6.2" }
clap = { version = "4.4", features = ["derive"] }
color-eyre = { version = "0.6" }
jsonrpsee = { version = "0.20", features = ["async-client", "jsonrpsee-client-transport", "ws-client"] }
lettre = { version = "0.11" }
parity-scale-codec = { version = "3.6" }
regex = { version = "1.10" }
reqwest = { version = "0.11", features = ["json"] }
scale-decode = { version = "0.10" }
scale-value = { version = "0.13" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
sp-core = { version = "26.0" }
sp-runtime = { version = "29.0" }
subxt = { version = "0.33", features = ["substrate-compat"] }
tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] }
toml = { version = "0.8" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }