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
78fb06f9
Unverified
Commit
78fb06f9
authored
Nov 13, 2019
by
Hero Bird
Committed by
GitHub
Nov 13, 2019
Browse files
[*] update SCALE codec from 1.0 -> 1.1 (#238)
parent
3bfa9a9e
Pipeline
#56857
failed with stages
in 24 seconds
Changes
25
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
examples/model/erc20/Cargo.toml
View file @
78fb06f9
...
...
@@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
ink_core
=
{
path
=
"../../../core"
}
ink_model
=
{
path
=
"../../../model"
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
0
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
[lib]
name
=
"erc20"
...
...
lang/Cargo.toml
View file @
78fb06f9
...
...
@@ -20,7 +20,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[dependencies]
ink_utils
=
{
path
=
"../utils/"
,
default-features
=
false
}
ink_model
=
{
path
=
"../model/"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
0
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
quote
=
"0.6"
syn
=
{
version
=
"0.15"
,
features
=
[
"parsing"
,
"full"
,
"extra-traits"
]
}
...
...
lang2/Cargo.toml
View file @
78fb06f9
...
...
@@ -18,7 +18,7 @@ ink_core = { version = "0.1", path = "../core", default-features = false }
ink_abi
=
{
version
=
"0.1"
,
path
=
"../abi"
,
default-features
=
false
,
optional
=
true
}
ink_lang2_macro
=
{
version
=
"0.1.0"
,
path
=
"macro"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
0
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
derive_more
=
{
version
=
"0.99.1"
,
default-features
=
false
,
features
=
["from"]
}
[features]
...
...
lang2/macro/Cargo.toml
View file @
78fb06f9
...
...
@@ -16,12 +16,12 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[dependencies]
ink_utils
=
{
path
=
"../../utils/"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
0
"
,
default-features
=
false
,
features
=
["derive"]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
["derive"]
}
quote
=
"1"
syn
=
{
version
=
"1"
,
features
=
[
"parsing"
,
"full"
,
"extra-traits"
]
}
proc-macro2
=
"1"
syn
=
{
version
=
"1
.0
"
,
features
=
[
"parsing"
,
"full"
,
"extra-traits"
]
}
proc-macro2
=
"1
.0
"
heck
=
"0.3"
itertools
=
{
version
=
"0.8"
,
default-features
=
false
}
itertools
=
{
version
=
"0.8
.1
"
,
default-features
=
false
}
either
=
{
version
=
"1.5"
,
default-features
=
false
}
serde
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
["derive"]
}
serde_json
=
"1.0"
...
...
model/Cargo.toml
View file @
78fb06f9
...
...
@@ -15,7 +15,7 @@ include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"]
[dependencies]
ink_core
=
{
path
=
"../core"
,
default-features
=
false
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
0
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
scale
=
{
package
=
"parity-scale-codec"
,
version
=
"1.
1
"
,
default-features
=
false
,
features
=
[
"derive"
,
"full"
]
}
[features]
default
=
["test-env"]
...
...
Prev
1
2
Next
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