Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: PROT-136 remove bindings #30

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# IDE
.idea

# directory to test cargo generate
/local-test/
1 change: 1 addition & 0 deletions base-workspace/.cargo/config.toml
1 change: 0 additions & 1 deletion cw20/base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ optimize = """docker run --rm \
"""

[dependencies]
archway-bindings = "0.2.1"
cosmwasm-schema = "1.3.1"
cosmwasm-std = "1.3.1"
cosmwasm-storage = "1.3.1"
Expand Down
1 change: 0 additions & 1 deletion cw20/escrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
archway-bindings = "0.2.1"
cosmwasm-schema = "1.3.1"
cosmwasm-std = "1.3.1"
cosmwasm-storage = "1.3.1"
Expand Down
1 change: 0 additions & 1 deletion cw721/on-chain-metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ optimize = """docker run --rm \
"""

[dependencies]
archway-bindings = "0.2.1"
cosmwasm-schema = "1.3.1"
cosmwasm-std = "1.3.1"
cw2 = "1.1.0"
Expand Down
1 change: 0 additions & 1 deletion increment/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ optimize = """docker run --rm \
"""

[dependencies]
archway-bindings = "0.2.1"
cosmwasm-schema = "1.3.1"
cosmwasm-std = "1.3.1"
cosmwasm-storage = "1.3.1"
Expand Down
3 changes: 2 additions & 1 deletion increment/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ pub mod contract;
mod error;
pub mod helpers;
{% unless version == "minimal" %}pub mod integration_tests;
{% endunless %}pub mod msg;
{% endunless %}
pub mod msg;
pub mod state;

pub use crate::error::ContractError;
Loading