Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Use latest ink release
  • Loading branch information
ascjones committed Sep 21, 2022
commit f1917f72e81b30414374014e29efe48221b29005
87 changes: 39 additions & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions crates/cargo-contract/templates/new/_Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ authors = ["[your_name] <[your_email]>"]
edition = "2021"

[dependencies]
# todo: update to crates.io version once released
ink = { package = "ink", git = "https://github.com/paritytech/ink", branch = "master", default-features = false }
ink = { version = "4.0.0-alpha.3", default-features = false }

scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
scale-info = { version = "2", default-features = false, features = ["derive"], optional = true }
Expand Down
8 changes: 3 additions & 5 deletions crates/transcode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ env_logger = "0.9.1"
escape8259 = "0.5.2"
hex = "0.4.3"
indexmap = "1.9.1"
# todo: update to crates.io version once released
ink_env = { package = "ink_env", git = "https://github.com/paritytech/ink", branch = "master" }
ink_metadata = { package = "ink_metadata", git = "https://github.com/paritytech/ink", branch = "master", features = ["derive"] }
ink_env = "4.0.0-alpha.3"
ink_metadata = { package = "ink_metadata", version = "4.0.0-alpha.3" }
itertools = "0.10.4"
tracing = "0.1.36"
nom = "7.1.1"
Expand All @@ -39,8 +38,7 @@ sp-runtime = "6.0.0"

[dev-dependencies]
assert_matches = "1.5.0"
# todo: update to crates.io version once released
ink = { package = "ink", git = "https://github.com/paritytech/ink", branch = "master" }
ink = "4.0.0-alpha.3"

[features]
# This `std` feature is required for testing using an inline contract's metadata, because `ink!` annotates the metadata
Expand Down