Skip to content

Commit 1d46537

Browse files
authored
1 parent 278e3f7 commit 1d46537

7 files changed

Lines changed: 2087 additions & 1 deletion

File tree

Cargo.lock

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ members = [
3131
"xrml/xfee/manager",
3232
# xrml/assets
3333
"xrml/xassets/assets",
34+
"xrml/xdex/spot/pendingorders",
3435
"xrml/xassets/records",
3536
"xrml/xassets/process",
3637
# xrml/mining
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
[package]
2+
name = "xrml-xdex-spot-pendingorders"
3+
version = "0.4.0"
4+
authors = ["Chainpool <https://www.chainx.org>"]
5+
6+
[dependencies]
7+
hex-literal = "0.1.0"
8+
serde = { version = "1.0", default_features = false }
9+
serde_derive = { version = "1.0", optional = true }
10+
parity-codec = { version = "2.0", default-features = false }
11+
parity-codec-derive = { version = "2.0", default-features = false }
12+
substrate-primitives = { git = "https://github.com/chainpool/substrate", default_features = false }
13+
sr-std = { git = "https://github.com/chainpool/substrate", default_features = false }
14+
sr-io = { git = "https://github.com/chainpool/substrate", default_features = false }
15+
sr-primitives = { git = "https://github.com/chainpool/substrate", default_features = false }
16+
srml-support = { git = "https://github.com/chainpool/substrate", default_features = false }
17+
srml-system = { git = "https://github.com/chainpool/substrate", default_features = false }
18+
srml-balances = { git = "https://github.com/chainpool/substrate", default_features = false }
19+
20+
log = "0.4"
21+
22+
# cxrml module
23+
xrml-xsystem = { path = "../../../xsystem", default-features = false }
24+
xrml-xaccounts = { path = "../../../xaccounts", default-features = false }
25+
xrml-xsupport = { path = "../../../xsupport", default_features = false }
26+
xrml-xassets-assets = { path = "../../../xassets/assets", default_features = false }
27+
28+
[features]
29+
default = ["std"]
30+
std=[
31+
"serde/std",
32+
"serde_derive",
33+
"parity-codec/std",
34+
"parity-codec-derive/std",
35+
"substrate-primitives/std",
36+
"sr-std/std",
37+
"sr-io/std",
38+
"sr-primitives/std",
39+
"srml-support/std",
40+
"srml-system/std",
41+
"srml-balances/std",
42+
"xrml-xsystem/std",
43+
"xrml-xaccounts/std",
44+
"xrml-xsupport/std",
45+
"xrml-xassets-assets/std",
46+
]

0 commit comments

Comments
 (0)