@@ -29,7 +29,7 @@ you to produce a smaller build that works with the cosmwasm integration tests
29
29
docker run --rm -v " $( pwd) " :/code \
30
30
--mount type=volume,source=" $( basename " $( pwd) " ) _cache" ,target=/code/target \
31
31
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
32
- cosmwasm/rust-optimizer:0.12.12
32
+ cosmwasm/rust-optimizer:0.12.13
33
33
```
34
34
35
35
Demo this with ` cosmwasm-examples ` (going into eg. ` erc20 ` subdir before running),
@@ -62,7 +62,7 @@ To compile all contracts in the workspace deterministically, you can run:
62
62
docker run --rm -v " $( pwd) " :/code \
63
63
--mount type=volume,source=" $( basename " $( pwd) " ) _cache" ,target=/code/target \
64
64
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
65
- cosmwasm/workspace-optimizer:0.12.12
65
+ cosmwasm/workspace-optimizer:0.12.13
66
66
```
67
67
68
68
The downside is that to verify one contract in the workspace, you need to compile them
@@ -88,7 +88,7 @@ case, we can use the optimize.sh command:
88
88
docker run --rm -v " $( pwd) " :/code \
89
89
--mount type=volume,source=" devcontract_cache_burner" ,target=/code/contracts/burner/target \
90
90
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
91
- cosmwasm/rust-optimizer:0.12.12 ./contracts/burner
91
+ cosmwasm/rust-optimizer:0.12.13 ./contracts/burner
92
92
```
93
93
94
94
## Development
0 commit comments