Skip to content

Commit a94feae

Browse files
authored
Merge pull request #53 from DA0-DA0/publish
Publish
2 parents 042151f + 5e198c0 commit a94feae

File tree

9 files changed

+20
-8
lines changed

9 files changed

+20
-8
lines changed

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: actions-rs/toolchain@v1
1010
with:
11-
toolchain: nightly
11+
toolchain: stable
1212
components: clippy
1313
override: true
1414
- uses: actions-rs/clippy-check@v1

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: actions-rs/toolchain@v1
1010
with:
11-
toolchain: nightly
11+
toolchain: stable
1212
components: rustfmt
1313
override: true
1414
- name: Run cargo fmt

Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ members = [
77

88
[workspace.package]
99
edition = "2021"
10-
license = "BSD-3"
10+
license = "BSD-3-Clause"
11+
repository = "https://github.com/DA0-DA0/polytone"
1112
rust-version = "1.67"
1213
version = "1.0.0"
1314

@@ -23,10 +24,10 @@ panic = 'abort'
2324
rpath = false
2425

2526
[workspace.dependencies]
26-
polytone = { path = "packages/polytone" }
27-
polytone-proxy = { path = "contracts/main/proxy" }
28-
polytone-note = { path = "contracts/main/note" }
29-
polytone-voice = { path = "contracts/main/voice" }
27+
polytone = { path = "packages/polytone", version = "1.0.0" }
28+
polytone-proxy = { path = "contracts/main/proxy", version = "1.0.0" }
29+
polytone-note = { path = "contracts/main/note", version = "1.0.0" }
30+
polytone-voice = { path = "contracts/main/voice", version = "1.0.0" }
3031

3132
cosmwasm-schema = "1.2.1"
3233
cosmwasm-std = { version = "1.2.4", features = ["ibc3"] }

contracts/accessories/listener/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[package]
22
name = "polytone-listener"
33
authors = ["noah <noah@daodao.zone>"]
4+
description = "A contract that listens for Polytone callbacks."
45
edition = { workspace = true }
56
license = { workspace = true }
7+
repository = { workspace = true }
68
rust-version = { workspace = true }
79
version = { workspace = true }
810

contracts/accessories/polytone-tester/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[package]
22
name = "polytone-tester"
33
authors = ["ekez <ekez@withoutdoing.com>"]
4+
description = "A Polytone tester contract."
45
edition = { workspace = true }
56
license = { workspace = true }
7+
repository = { workspace = true }
68
rust-version = { workspace = true }
79
version = { workspace = true }
810

contracts/main/note/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "polytone-note"
33
authors = ["ekez <ekez@withoutdoing.com>"]
4+
description = "Sends messages to be executed on other chains over IBC."
45
edition = { workspace = true }
56
license = { workspace = true }
67
rust-version = { workspace = true }
8+
repository = { workspace = true }
79
version = { workspace = true }
810

911
[lib]

contracts/main/proxy/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[package]
22
name = "polytone-proxy"
33
authors = ["ekez <ekez@withoutdoing.com>"]
4+
description = "An Interchain Account contract."
45
edition = { workspace = true }
56
license = { workspace = true }
7+
repository = { workspace = true }
68
rust-version = { workspace = true }
79
version = { workspace = true }
810

contracts/main/voice/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "polytone-voice"
33
authors = ["ekez <ekez@withoutdoing.com>"]
4+
description = "The Polytone Voice contract, recieving notes over IBC and vocalizing them on the host chain via account proxy contracts."
45
edition = { workspace = true }
56
license = { workspace = true }
67
rust-version = { workspace = true }
8+
repository = { workspace = true }
79
version = { workspace = true }
810

911
[lib]

packages/polytone/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "polytone"
33
authors = ["ekez <ekez@withoutdoing.com>"]
4+
description = "Core interfaces for Polytone Interchain accounts and queries."
45
edition = { workspace = true }
56
license = { workspace = true }
67
rust-version = { workspace = true }
@@ -10,4 +11,4 @@ version = { workspace = true }
1011
cosmwasm-schema = { workspace = true }
1112
cosmwasm-std = { workspace = true }
1213
cw-storage-plus = { workspace = true }
13-
thiserror = { workspace = true }
14+
thiserror = { workspace = true }

0 commit comments

Comments
 (0)