-
Notifications
You must be signed in to change notification settings - Fork 116
substrate 2.0.0-rc4 version upgrade #1072
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
f075c43
7f28e4f
7d931c0
2d20b23
b570a9a
0e4cfb1
a28e044
d2c1106
0ed9ecd
50c4f53
31504fd
65cdabb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,40 +1,34 @@ | ||
| [package] | ||
| name = 'substrate-content-directory-module' | ||
| version = '1.0.1' | ||
| version = '3.0.0' | ||
| authors = ['Joystream contributors'] | ||
| edition = '2018' | ||
|
|
||
| [dependencies] | ||
| hex-literal = '0.1.0' | ||
| codec = { package = 'parity-scale-codec', version = '1.0.0', default-features = false, features = ['derive'] } | ||
| rstd = { package = 'sr-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| runtime-primitives = { package = 'sr-primitives', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| srml-support = { package = 'srml-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| srml-support-procedural = { package = 'srml-support-procedural', git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| system = { package = 'srml-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| timestamp = { package = 'srml-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| runtime-io = { package = 'sr-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| # https://users.rust-lang.org/t/failure-derive-compilation-error/39062 | ||
| quote = '<=1.0.2' | ||
| codec = { package = 'parity-scale-codec', version = '1.3.1', default-features = false, features = ['derive'] } | ||
| rstd = { package = 'sp-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'} | ||
| sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'} | ||
| frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'} | ||
| system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'} | ||
| sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'} | ||
|
|
||
|
||
| [dependencies.serde] | ||
| features = ['derive'] | ||
| optional = true | ||
| version = '1.0.101' | ||
|
|
||
| [dev-dependencies] | ||
| runtime-io = { package = 'sr-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| primitives = { package = 'substrate-primitives', git = 'https://github.com/paritytech/substrate.git', rev = 'c37bb08535c49a12320af7facfd555ce05cce2e8'} | ||
| sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'} | ||
| sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'} | ||
|
|
||
| [features] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you sort feature-definitions similar to dependencies order: it's easier to check them.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, 0e4cfb1 |
||
| default = ['std'] | ||
| std = [ | ||
| 'serde', | ||
| 'codec/std', | ||
| 'rstd/std', | ||
|
||
| 'runtime-io/std', | ||
| 'runtime-primitives/std', | ||
| 'srml-support/std', | ||
| 'sp-arithmetic/std', | ||
| 'sp-runtime/std', | ||
| 'frame-support/std', | ||
| 'system/std', | ||
| 'timestamp/std', | ||
| ] | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please rename it to 'pallet-content-directory'.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done here 0e4cfb1