Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
959 changes: 810 additions & 149 deletions Cargo.lock

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cosmwasm-std = "1.5.3"
cosmwasm-schema = "1.5.3"
cw-storage-plus = "1.2.0"
cosmwasm-std = "3.0.2"
cosmwasm-schema = "3.0.2"
cw-storage-plus = "3.0.1"
bech32 = "0.9.1"
sha2 = "0.10.6"
ripemd = "0.1.3"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
hex = "0.4.3"
base64 = "0.21.7"
query-responses-hybrid-derive = { path = "query-responses-hybrid-derive" }
query-responses-hybrid-derive = { path = "query-responses-hybrid-derive" }
serde_json = "1.0.145"
17 changes: 17 additions & 0 deletions query-responses-hybrid-derive/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Build results
/target
/schema
/artifacts

# Cargo+Git helper file (https://github.com/rust-lang/cargo/blob/0.44.1/src/cargo/sources/git/utils.rs#L320-L327)
.cargo-ok

# Text file backups
**/*.rs.bk

# macOS
.DS_Store

# IDEs
*.iml
.idea
Loading