Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #18 from casper-ecosystem/hotfix/1.4.0-compatible
Browse files Browse the repository at this point in the history
fix for casper-contract 1.4.0
  • Loading branch information
hoffmannjan authored Oct 21, 2021
2 parents d2e285b + d5095cc commit a2e96a3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Maciej Zielinski <[email protected]>"]
edition = "2018"

[dependencies]
casper-contract = "1.2.0"
casper-types = "1.2.0"
casper-contract = { version = "1.4.0", default-features = false }
casper-types = { version = "1.4.0", default-features = false }

[[bin]]
name = "keys-manager"
Expand All @@ -16,7 +16,8 @@ doctest = false
test = false

[features]
default = ["casper-contract/std", "casper-types/std", "casper-contract/test-support"]
default = ["std"]
std = ["casper-contract/std", "casper-types/std"]

[profile.release]
lto = true

0 comments on commit a2e96a3

Please sign in to comment.