diff --git a/.gitignore b/.gitignore index 088ba6b..35b7eb0 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,9 @@ Cargo.lock # These are backup files generated by rustfmt **/*.rs.bk + +# IDE +.idea + +# directory to test cargo generate +/local-test/ diff --git a/base-workspace/.cargo/config.toml b/base-workspace/.cargo/config.toml new file mode 120000 index 0000000..30fa1ce --- /dev/null +++ b/base-workspace/.cargo/config.toml @@ -0,0 +1 @@ +config \ No newline at end of file diff --git a/cw20/base/Cargo.toml b/cw20/base/Cargo.toml index 166856b..cffc4e2 100644 --- a/cw20/base/Cargo.toml +++ b/cw20/base/Cargo.toml @@ -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" diff --git a/cw20/escrow/Cargo.toml b/cw20/escrow/Cargo.toml index 66b2be4..68baf75 100644 --- a/cw20/escrow/Cargo.toml +++ b/cw20/escrow/Cargo.toml @@ -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" diff --git a/cw721/on-chain-metadata/Cargo.toml b/cw721/on-chain-metadata/Cargo.toml index 9babb44..5e3fcce 100644 --- a/cw721/on-chain-metadata/Cargo.toml +++ b/cw721/on-chain-metadata/Cargo.toml @@ -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" diff --git a/increment/Cargo.toml b/increment/Cargo.toml index 8db23c3..92d3600 100644 --- a/increment/Cargo.toml +++ b/increment/Cargo.toml @@ -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" diff --git a/increment/src/lib.rs b/increment/src/lib.rs index c3814f1..70812b0 100644 --- a/increment/src/lib.rs +++ b/increment/src/lib.rs @@ -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;