generated from hack-ink/rust-initializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (46 loc) · 1.41 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
51
[workspace]
members = [
"subcryptor",
"subhasher",
"submetadatan",
"subrpcer",
"subruntimer",
"subspector",
"substorager",
"subversioner",
]
resolver = "2"
[workspace.package]
authors = ["Xavier Lau <xavier@inv.cafe>"]
edition = "2021"
homepage = "https://substrate-minimal.hack.ink"
license = "GPL-3.0"
repository = "https://github.com/hack-ink/substrate-minimal"
version = "0.11.1"
[workspace.dependencies]
# crates.io
array-bytes = { version = "6.2" }
fxhash = { version = "0.2" }
once_cell = { version = "1.20" }
parity-scale-codec = { version = "3.6" }
reqwest = { version = "0.12" }
scale-info = { version = "2.11" }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
thiserror = { version = "1.0" }
tracing = { version = "0.1" }
# hack-ink
subcryptor = { version = "0.11", path = "subcryptor" }
subhasher = { version = "0.11", path = "subhasher" }
submetadatan = { version = "0.11", path = "submetadatan" }
subrpcer = { version = "0.11", path = "subrpcer" }
subruntimer = { version = "0.11", path = "subruntimer" }
subspector = { version = "0.11", path = "subspector" }
substorager = { version = "0.11", path = "substorager" }
subversioner = { version = "0.11", path = "subversioner" }
[profile.ci-dev]
incremental = false
inherits = "dev"
[profile.ci-release]
inherits = "release"
lto = true