Skip to content

Commit

Permalink
Merge pull request #53 from DA0-DA0/publish
Browse files Browse the repository at this point in the history
Publish
  • Loading branch information
JakeHartnell committed Jul 4, 2023
2 parents 042151f + 5e198c0 commit a94feae
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: stable
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: stable
components: rustfmt
override: true
- name: Run cargo fmt
Expand Down
11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ members = [

[workspace.package]
edition = "2021"
license = "BSD-3"
license = "BSD-3-Clause"
repository = "https://github.com/DA0-DA0/polytone"
rust-version = "1.67"
version = "1.0.0"

Expand All @@ -23,10 +24,10 @@ panic = 'abort'
rpath = false

[workspace.dependencies]
polytone = { path = "packages/polytone" }
polytone-proxy = { path = "contracts/main/proxy" }
polytone-note = { path = "contracts/main/note" }
polytone-voice = { path = "contracts/main/voice" }
polytone = { path = "packages/polytone", version = "1.0.0" }
polytone-proxy = { path = "contracts/main/proxy", version = "1.0.0" }
polytone-note = { path = "contracts/main/note", version = "1.0.0" }
polytone-voice = { path = "contracts/main/voice", version = "1.0.0" }

cosmwasm-schema = "1.2.1"
cosmwasm-std = { version = "1.2.4", features = ["ibc3"] }
Expand Down
2 changes: 2 additions & 0 deletions contracts/accessories/listener/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[package]
name = "polytone-listener"
authors = ["noah <[email protected]>"]
description = "A contract that listens for Polytone callbacks."
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

Expand Down
2 changes: 2 additions & 0 deletions contracts/accessories/polytone-tester/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[package]
name = "polytone-tester"
authors = ["ekez <[email protected]>"]
description = "A Polytone tester contract."
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

Expand Down
2 changes: 2 additions & 0 deletions contracts/main/note/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "polytone-note"
authors = ["ekez <[email protected]>"]
description = "Sends messages to be executed on other chains over IBC."
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }
version = { workspace = true }

[lib]
Expand Down
2 changes: 2 additions & 0 deletions contracts/main/proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[package]
name = "polytone-proxy"
authors = ["ekez <[email protected]>"]
description = "An Interchain Account contract."
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }

Expand Down
2 changes: 2 additions & 0 deletions contracts/main/voice/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "polytone-voice"
authors = ["ekez <[email protected]>"]
description = "The Polytone Voice contract, recieving notes over IBC and vocalizing them on the host chain via account proxy contracts."
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }
version = { workspace = true }

[lib]
Expand Down
3 changes: 2 additions & 1 deletion packages/polytone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "polytone"
authors = ["ekez <[email protected]>"]
description = "Core interfaces for Polytone Interchain accounts and queries."
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
Expand All @@ -10,4 +11,4 @@ version = { workspace = true }
cosmwasm-schema = { workspace = true }
cosmwasm-std = { workspace = true }
cw-storage-plus = { workspace = true }
thiserror = { workspace = true }
thiserror = { workspace = true }

0 comments on commit a94feae

Please sign in to comment.