-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move common metadata to workspace package
- Loading branch information
Showing
4 changed files
with
43 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,11 @@ | |
members = ["packages/*", "contracts/*"] | ||
resolver = "2" | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
debug = false | ||
debug-assertions = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true | ||
panic = 'abort' | ||
rpath = false | ||
[workspace.package] | ||
authors = ["Augusto Elesbão <[email protected]>"] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/archway-network/archway-bindings" | ||
homepage = "https://archway.io" | ||
|
||
[workspace.dependencies] | ||
cosmwasm-schema = "1.4.0" | ||
|
@@ -23,3 +18,14 @@ cw2 = "1.1.0" | |
schemars = "0.8.15" | ||
serde = { version = "1.0.188", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.48" } | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
debug = false | ||
debug-assertions = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true | ||
panic = 'abort' | ||
rpath = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
[package] | ||
name = "increment" | ||
version = "0.2.0" | ||
authors = ["Augusto Elesbão <[email protected]>"] | ||
edition = "2021" | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
readme = "README.md" | ||
|
||
exclude = [ | ||
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,12 @@ name = "archway-bindings" | |
version = "0.2.0" | ||
edition = "2021" | ||
description = "CosmWasm bindings to interact with Archway's modules" | ||
authors = ["Augusto Elesbão <[email protected]>"] | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
readme = "README.md" | ||
|
||
categories = [ | ||
"cryptography", | ||
"cryptography::cryptocurrencies", | ||
|
@@ -17,10 +22,6 @@ keywords = [ | |
"smart-contracts", | ||
"wasm", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/archway-network/archway-bindings" | ||
homepage = "https://archway.io" | ||
readme = "README.md" | ||
|
||
[features] | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,25 +2,26 @@ | |
name = "archway-proto" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "Rust build of Archway's protobuf definitions" | ||
authors = ["Augusto Elesbão <[email protected]>"] | ||
description = "Rust build of Archway's ProtoBuf definitions" | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
readme = "README.md" | ||
|
||
categories = [ | ||
"cryptography", | ||
"cryptography::cryptocurrencies", | ||
"database", | ||
"wasm", | ||
"cryptography", | ||
"cryptography::cryptocurrencies", | ||
"database", | ||
"wasm", | ||
] | ||
keywords = [ | ||
"archway", | ||
"blockchain", | ||
"cosmwasm", | ||
"proto", | ||
"smart-contracts", | ||
"archway", | ||
"blockchain", | ||
"cosmwasm", | ||
"proto", | ||
"smart-contracts", | ||
] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/archway-network/archway-bindings" | ||
homepage = "https://archway.io" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
prost = "0.11.9" | ||
|