-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
50 lines (44 loc) · 3 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
[workspace]
resolver = "2"
members = [
"appchain",
"bridge",
"lpos",
"support",
"upward-messages",
]
[workspace.package]
version = "4.0.0-pre.0"
edition = "2021"
authors = ["Octopus Network <hi@oct.network>"]
license = "Apache-2.0"
homepage = "http://oct.network"
repository = "https://github.com/octopus-network/octopus-pallets.git"
documentation = "https://docs.rs/pallet-octopus-appchain"
[workspace.dependencies]
borsh = { version = "0.10", default-features = false}
base64 = { version = "0.13.0", default-features = false}
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false}
scale-info = { version = "2.1.1", default-features = false, features = ["derive"]}
hex = { version = "0.4.3", default-features = false}
log = { version = "0.4.17", default-features = false}
serde = { version = "1.0.136", default-features = false}
serde_bytes = { version = "0.11", default-features = false}
serde_json = { version = "1.0.85", default-features = false}
frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-application-crypto = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-io = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-keystore = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
sp-staking = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
pallet-timestamp = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
pallet-session = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
pallet-uniques = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
pallet-authorship = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false}
pallet-assets = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40" }
pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40" }