-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
138 additions
and
138 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw1-subkeys" | ||
version = "0.10.3" | ||
version = "0.11" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract" | ||
|
@@ -19,17 +19,17 @@ library = [] | |
test-utils = [] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.10.3", features = ["library"] } | ||
utils = { path = "../../packages/utils", version = "0.11" } | ||
cw1 = { path = "../../packages/cw1", version = "0.11" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.11", features = ["library"] } | ||
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = "1.0.23" | ||
semver = "1" | ||
|
||
[dev-dependencies] | ||
cosmwasm-schema = { version = "1.0.0-beta3" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.10.3", features = ["library", "test-utils"] } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.11", features = ["library", "test-utils"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw1-whitelist-ng" | ||
version = "0.10.3" | ||
version = "0.11" | ||
authors = ["Bartłomiej Kuras <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -22,20 +22,20 @@ querier = ["library"] | |
multitest = ["cw-multi-test", "anyhow"] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
utils = { path = "../../packages/utils", version = "0.11" } | ||
cw1 = { path = "../../packages/cw1", version = "0.11" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11" } | ||
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.23" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.10.3", optional = true } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.11", optional = true } | ||
anyhow = { version = "1", optional = true } | ||
|
||
[dev-dependencies] | ||
anyhow = "1" | ||
assert_matches = "1" | ||
cosmwasm-schema = { version = "1.0.0-beta3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.10.3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.11" } | ||
derivative = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw1-whitelist" | ||
version = "0.10.3" | ||
version = "0.11" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -19,11 +19,11 @@ library = [] | |
test-utils = [] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
utils = { path = "../../packages/utils", version = "0.11" } | ||
cw1 = { path = "../../packages/cw1", version = "0.11" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11" } | ||
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.23" } | ||
|
@@ -32,5 +32,5 @@ thiserror = { version = "1.0.23" } | |
anyhow = "1" | ||
assert_matches = "1" | ||
cosmwasm-schema = { version = "1.0.0-beta3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.10.3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.11" } | ||
derivative = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw1155-base" | ||
version = "0.10.3" | ||
version = "0.11" | ||
authors = ["Huang Yi <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation of a CosmWasm-1155 compliant token" | ||
|
@@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
cw1155 = { path = "../../packages/cw1155", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
utils = { path = "../../packages/utils", version = "0.11" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11" } | ||
cw1155 = { path = "../../packages/cw1155", version = "0.11" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" } | ||
cosmwasm-std = { version = "1.0.0-beta3" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw20-atomic-swap" | ||
version = "0.10.3" | ||
version = "0.11" | ||
authors = ["Mauro Lacy <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of Atomic Swaps" | ||
|
@@ -15,11 +15,11 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
cw20 = { path = "../../packages/cw20", version = "0.10.3" } | ||
utils = { path = "../../packages/utils", version = "0.11" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11" } | ||
cw20 = { path = "../../packages/cw20", version = "0.11" } | ||
cosmwasm-std = { version = "1.0.0-beta3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.23" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw20-base" | ||
version = "0.10.3" | ||
version = "0.11" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation of a CosmWasm-20 compliant token" | ||
|
@@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"] | |
library = [] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
cw20 = { path = "../../packages/cw20", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
utils = { path = "../../packages/utils", version = "0.11" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11" } | ||
cw20 = { path = "../../packages/cw20", version = "0.11" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" } | ||
cosmwasm-std = { version = "1.0.0-beta3" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
|
Oops, something went wrong.