Skip to content

Commit

Permalink
⚡️ Add Skip package path to workspace cargo.toml (#61)
Browse files Browse the repository at this point in the history
* ⚡️ Add skip package path to workspace cargo.toml

- Have all contracts use workspace skip

* 📝 Add changelog entry
  • Loading branch information
NotJeremyLiu authored Aug 8, 2023
1 parent 79f1734 commit 59f9e8c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
- [#58](https://github.com/skip-mev/skip-api-contracts/pull/58) Updates make optimize to target /target instead of /code/target
- [#59](https://github.com/skip-mev/skip-api-contracts/pull/59) Add cargo fmt check in github workflow
- [#60](https://github.com/skip-mev/skip-api-contracts/pull/60) Update github workflow to also run on push to main
- [#61](https://github.com/skip-mev/skip-api-contracts/pull/61) Add Skip package path to workspace cargo.toml

## [v0.2.0](https://github.com/skip-mev/skip-api-contracts/releases/tag/v0.2.0) - 2023-08-03

Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ osmosis-std = "0.15.3"
prost = "0.11"
serde-cw-value = "0.7.0"
serde-json-wasm = "0.5.1"
skip = { version = "0.2.0", path = "./packages/skip" }
test-case = "3.1.0"
thiserror = "1"

Expand Down
2 changes: 1 addition & 1 deletion contracts/entry-point/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ library = []
cosmwasm-std = { workspace = true }
cw-storage-plus = { workspace = true }
cw-utils = { workspace = true }
skip = { path = "../../packages/skip" }
skip = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion contracts/networks/neutron/ibc-transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cw-storage-plus = { workspace = true }
neutron-proto = { workspace = true }
neutron-sdk = { workspace = true }
prost = { workspace = true }
skip = { path = "../../../../packages/skip" }
skip = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion contracts/networks/neutron/swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cosmwasm-schema = { workspace = true }
cosmwasm-std = { workspace = true }
cw-storage-plus = { workspace = true }
cw-utils = { workspace = true }
skip = { path = "../../../../packages/skip" }
skip = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion contracts/networks/osmosis/ibc-transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ibc-proto = { workspace = true }
prost = { workspace = true }
serde-json-wasm = { workspace = true }
serde-cw-value = { workspace = true }
skip = { path = "../../../../packages/skip" }
skip = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion contracts/networks/osmosis/swap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cosmwasm-std = { workspace = true }
cw-storage-plus = { workspace = true }
cw-utils = { workspace = true }
osmosis-std = { workspace = true }
skip = { path = "../../../../packages/skip" }
skip = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down

0 comments on commit 59f9e8c

Please sign in to comment.