@@ -24,7 +24,7 @@ you to produce a smaller build that works with the cosmwasm integration tests
24
24
docker run --rm -v " $( pwd) " :/code \
25
25
--mount type=volume,source=" $( basename " $( pwd) " ) _cache" ,target=/code/target \
26
26
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
27
- cosmwasm/rust-optimizer:0.10.5
27
+ cosmwasm/rust-optimizer:0.10.6
28
28
```
29
29
30
30
Demo this with ` cosmwasm-examples ` (going into eg. ` erc20 ` subdir before running),
@@ -57,7 +57,7 @@ To compile all contracts in the workspace deterministically, you can run:
57
57
docker run --rm -v " $( pwd) " :/code \
58
58
--mount type=volume,source=" $( basename " $( pwd) " ) _cache" ,target=/code/target \
59
59
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
60
- cosmwasm/workspace-optimizer:0.10.5
60
+ cosmwasm/workspace-optimizer:0.10.6
61
61
```
62
62
63
63
The downside is that to verify one contract in the workspace, you need to compile them
@@ -83,7 +83,7 @@ case, we can use the optimize.sh command:
83
83
docker run --rm -v " $( pwd) " :/code \
84
84
--mount type=volume,source=" devcontract_cache_burner" ,target=/code/contracts/burner/target \
85
85
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
86
- cosmwasm/rust-optimizer:0.10.5 ./contracts/burner
86
+ cosmwasm/rust-optimizer:0.10.6 ./contracts/burner
87
87
```
88
88
89
89
## Development
0 commit comments