Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
ink
Commits
82c9629f
Unverified
Commit
82c9629f
authored
Mar 05, 2020
by
Hero Bird
Committed by
GitHub
Mar 05, 2020
Browse files
[*] update SCALE codec from 1.1 -> 1.2 (#342)
parent
e53d9d36
Pipeline
#81651
failed with stages
in 4 minutes and 16 seconds
Changes
12
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
core/Cargo.toml
View file @
82c9629f
...
...
@@ -21,7 +21,7 @@ ink_primitives = { path = "../primitives/", default-features = false }
ink_core_derive
=
{
path
=
"derive"
,
default-features
=
false
}
ink_prelude
=
{
path
=
"../prelude/"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
derive_more
=
{
version
=
"0.99.2"
,
default-features
=
false
,
features
=
[
"from"
,
"display"
]
}
smallvec
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["union"]
}
...
...
examples/delegator/Cargo.toml
View file @
82c9629f
...
...
@@ -10,7 +10,7 @@ ink_abi = { path = "../../abi", default-features = false, features = ["derive"],
ink_core
=
{
path
=
"../../core"
,
default-features
=
false
}
ink_lang
=
{
path
=
"../../lang"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
adder
=
{
path
=
"adder"
,
default-features
=
false
,
features
=
["ink-as-dependency"]
}
...
...
examples/delegator/accumulator/Cargo.toml
View file @
82c9629f
...
...
@@ -10,7 +10,7 @@ ink_abi = { path = "../../../abi", default-features = false, features = ["derive
ink_core
=
{
path
=
"../../../core"
,
default-features
=
false
}
ink_lang
=
{
path
=
"../../../lang"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
[lib]
...
...
examples/delegator/adder/Cargo.toml
View file @
82c9629f
...
...
@@ -10,7 +10,7 @@ ink_abi = { path = "../../../abi", default-features = false, features = ["derive
ink_core
=
{
path
=
"../../../core"
,
default-features
=
false
}
ink_lang
=
{
path
=
"../../../lang"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
accumulator
=
{
path
=
"../accumulator"
,
default-features
=
false
,
features
=
["ink-as-dependency"]
}
...
...
examples/delegator/subber/Cargo.toml
View file @
82c9629f
...
...
@@ -10,7 +10,7 @@ ink_abi = { path = "../../../abi", default-features = false, features = ["derive
ink_core
=
{
path
=
"../../../core"
,
default-features
=
false
}
ink_lang
=
{
path
=
"../../../lang"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
accumulator
=
{
path
=
"../accumulator"
,
default-features
=
false
,
features
=
["ink-as-dependency"]
}
...
...
examples/erc20/Cargo.toml
View file @
82c9629f
...
...
@@ -10,7 +10,7 @@ ink_abi = { path = "../../abi", default-features = false, features = ["derive"],
ink_core
=
{
path
=
"../../core"
,
default-features
=
false
}
ink_lang
=
{
path
=
"../../lang"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
[lib]
...
...
examples/flipper/Cargo.toml
View file @
82c9629f
...
...
@@ -10,7 +10,7 @@ ink_abi = { path = "../../abi", default-features = false, features = ["derive"],
ink_core
=
{
path
=
"../../core"
,
default-features
=
false
}
ink_lang
=
{
path
=
"../../lang"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
[lib]
...
...
examples/incrementer/Cargo.toml
View file @
82c9629f
...
...
@@ -10,7 +10,7 @@ ink_abi = { path = "../../abi", default-features = false, features = ["derive"],
ink_core
=
{
path
=
"../../core"
,
default-features
=
false
}
ink_lang
=
{
path
=
"../../lang"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
[lib]
...
...
examples/runtime-storage/Cargo.toml
View file @
82c9629f
...
...
@@ -11,7 +11,7 @@ ink_core = { path = "../../core", default-features = false }
ink_lang
=
{
path
=
"../../lang"
,
default-features
=
false
}
blake2-rfc
=
{
version
=
"0.2.18"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
[lib]
...
...
lang/Cargo.toml
View file @
82c9629f
...
...
@@ -21,7 +21,7 @@ ink_abi = { path = "../abi", default-features = false, optional = true }
ink_prelude
=
{
path
=
"../prelude/"
,
default-features
=
false
}
ink_lang_macro
=
{
path
=
"macro"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
derive_more
=
{
version
=
"0.99.2"
,
default-features
=
false
,
features
=
["from"]
}
[features]
...
...
lang/macro/Cargo.toml
View file @
82c9629f
...
...
@@ -17,7 +17,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[dependencies]
ink_primitives
=
{
path
=
"../../primitives/"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
["derive"]
}
quote
=
"1"
syn
=
{
version
=
"1.0"
,
features
=
[
"parsing"
,
"full"
,
"extra-traits"
]
}
proc-macro2
=
"1.0"
...
...
primitives/Cargo.toml
View file @
82c9629f
...
...
@@ -20,7 +20,7 @@ include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"]
[dependencies]
ink_prelude
=
{
path
=
"../prelude/"
,
default-features
=
false
}
tiny-keccak
=
{
version
=
"2.0"
,
features
=
["keccak"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
2
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
type-metadata
=
{
git
=
"https://github.com/type-metadata/type-metadata.git"
,
default-features
=
false
,
features
=
["derive"]
,
optional
=
true
}
[features]
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment