forked from CosmosContracts/token-bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade dependencies in bindings-test package, add basic readme
- Loading branch information
Jake Hartnell
committed
Aug 17, 2023
1 parent
5299b86
commit 678e560
Showing
4 changed files
with
33 additions
and
69 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,20 +1,19 @@ | ||
[package] | ||
name = "token-bindings-test" | ||
version = "0.8.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Multitest (and other test helpers) support for Osmosis-specific contracts" | ||
repository = "https://github.com/confio/osmosis-bindings" | ||
homepage = "https://osmosis.zone" | ||
version = "0.9.0" | ||
authors = ["Ethan Frey <[email protected]>", "Jake Hartnell <[email protected]>"] | ||
edition = "2021" | ||
description = "Multitest (and other test helpers) support for Token factory contracts" | ||
repository = "https://github.com/CosmosContracts/token-bindings" | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
itertools = "0.10" | ||
itertools = "0.11" | ||
token-bindings = { version = "0.10.3", path = "../bindings" } | ||
cosmwasm-std = "1.1" | ||
schemars = "0.8" | ||
serde = { version = "1.0", default-features = false, features = ["derive"] } | ||
cw-multi-test = "0.15" | ||
cw-storage-plus = "0.15" | ||
cw-multi-test = "0.16" | ||
cw-storage-plus = "0.16" | ||
anyhow = "1" | ||
thiserror = "1.0" |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# token-bindings-test | ||
|
||
Use this as a drop in replacement for `cw-multi-test` if you are working with contracts leveraging Token Factory. |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "token-bindings" | |
version = "0.10.3" | ||
authors = ["Ethan Frey <[email protected]>", "Reece Williams <[email protected]>"] | ||
edition = "2018" | ||
description = "Bindings for CustomMsg and CustomQuery for the Juno blockchain" | ||
description = "Bindings for CustomMsg and CustomQuery for blockchains supporting Token Factory." | ||
repository = "https://github.com/CosmosContracts/token-bindings" | ||
homepage = "https://junonetwork.io" | ||
license = "Apache-2.0" | ||
|