Skip to content

Commit

Permalink
chore: introduce new storage package
Browse files Browse the repository at this point in the history
  • Loading branch information
amimart committed Mar 30, 2023
1 parent c539bf5 commit c5517ca
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 3 deletions.
22 changes: 19 additions & 3 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = ["contracts/*", "packages/*"]

[workspace.dependencies]
logic-bindings = { path = "packages/logic-bindings" }
storage = { path = "packages/storage" }
cosmwasm-schema = "1.2.3"
cosmwasm-std = "1.2.3"
cosmwasm-storage = "1.2.3"
Expand Down
12 changes: 12 additions & 0 deletions packages/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
authors = ["OKP4"]
edition = "2021"
name = "storage"
version = "1.0.0"

[dependencies]
cw-storage = { path = "../../contracts/cw-storage" }
logic-bindings.workspace = true
cosmwasm-std.workspace = true
schemars.workspace = true
serde.workspace = true
1 change: 1 addition & 0 deletions packages/storage/Makefile.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[tasks.schema]
3 changes: 3 additions & 0 deletions packages/storage/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Storage

Package that holds components to interact with the `cw-storage` contract.

0 comments on commit c5517ca

Please sign in to comment.