Skip to content

Commit 1264182

Browse files
author
Aton
authored
xassets-record finish (paritytech#166)
xassets-record finish
1 parent e722499 commit 1264182

File tree

9 files changed

+1333
-3
lines changed

9 files changed

+1333
-3
lines changed

Cargo.lock

Lines changed: 20 additions & 1 deletion
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,4 +31,5 @@ members = [
3131
"xrml/xfee/manager",
3232
# xrml/assets
3333
"xrml/xassets/assets",
34+
"xrml/xassets/records",
3435
]

xrml/xaccounts/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,6 @@ std=[
3636
"srml-system/std",
3737
"srml-consensus/std",
3838
"srml-session/std",
39+
"srml-balances/std",
40+
"srml-timestamp/std",
3941
]

xrml/xassets/records/.gitkeep

Whitespace-only changes.

xrml/xassets/records/Cargo.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[package]
2+
name = "xrml-xassets-records"
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+
# xrml module
21+
xrml-xsupport = { path = "../../xsupport", default_features = false }
22+
xrml-xassets-assets = { path = "../assets", default_features = false }
23+
24+
25+
[features]
26+
default = ["std"]
27+
std=[
28+
"serde/std",
29+
"serde_derive",
30+
"parity-codec/std",
31+
"parity-codec-derive/std",
32+
"substrate-primitives/std",
33+
"sr-std/std",
34+
"sr-io/std",
35+
"sr-primitives/std",
36+
"srml-support/std",
37+
"srml-system/std",
38+
"srml-balances/std",
39+
# xrml module
40+
"xrml-xsupport/std",
41+
"xrml-xassets-assets/std",
42+
]

0 commit comments

Comments
 (0)