File tree Expand file tree Collapse file tree 9 files changed +20
-8
lines changed
Expand file tree Collapse file tree 9 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ members = [
77
88[workspace .package ]
99edition = " 2021"
10- license = " BSD-3"
10+ license = " BSD-3-Clause"
11+ repository = " https://github.com/DA0-DA0/polytone"
1112rust-version = " 1.67"
1213version = " 1.0.0"
1314
@@ -23,10 +24,10 @@ panic = 'abort'
2324rpath = 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
3132cosmwasm-schema = " 1.2.1"
3233cosmwasm-std = { version = " 1.2.4" , features = [" ibc3" ] }
Original file line number Diff line number Diff line change 11[package ]
22name = " polytone-listener"
33authors = [" noah <noah@daodao.zone>" ]
4+ description = " A contract that listens for Polytone callbacks."
45edition = { workspace = true }
56license = { workspace = true }
7+ repository = { workspace = true }
68rust-version = { workspace = true }
79version = { workspace = true }
810
Original file line number Diff line number Diff line change 11[package ]
22name = " polytone-tester"
33authors = [" ekez <ekez@withoutdoing.com>" ]
4+ description = " A Polytone tester contract."
45edition = { workspace = true }
56license = { workspace = true }
7+ repository = { workspace = true }
68rust-version = { workspace = true }
79version = { workspace = true }
810
Original file line number Diff line number Diff line change 11[package ]
22name = " polytone-note"
33authors = [" ekez <ekez@withoutdoing.com>" ]
4+ description = " Sends messages to be executed on other chains over IBC."
45edition = { workspace = true }
56license = { workspace = true }
67rust-version = { workspace = true }
8+ repository = { workspace = true }
79version = { workspace = true }
810
911[lib ]
Original file line number Diff line number Diff line change 11[package ]
22name = " polytone-proxy"
33authors = [" ekez <ekez@withoutdoing.com>" ]
4+ description = " An Interchain Account contract."
45edition = { workspace = true }
56license = { workspace = true }
7+ repository = { workspace = true }
68rust-version = { workspace = true }
79version = { workspace = true }
810
Original file line number Diff line number Diff line change 11[package ]
22name = " polytone-voice"
33authors = [" 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."
45edition = { workspace = true }
56license = { workspace = true }
67rust-version = { workspace = true }
8+ repository = { workspace = true }
79version = { workspace = true }
810
911[lib ]
Original file line number Diff line number Diff line change 11[package ]
22name = " polytone"
33authors = [" ekez <ekez@withoutdoing.com>" ]
4+ description = " Core interfaces for Polytone Interchain accounts and queries."
45edition = { workspace = true }
56license = { workspace = true }
67rust-version = { workspace = true }
@@ -10,4 +11,4 @@ version = { workspace = true }
1011cosmwasm-schema = { workspace = true }
1112cosmwasm-std = { workspace = true }
1213cw-storage-plus = { workspace = true }
13- thiserror = { workspace = true }
14+ thiserror = { workspace = true }
You can’t perform that action at this time.
0 commit comments