Skip to content

Commit

Permalink
Merge pull request #526 from okp4/build/cargo-warnings
Browse files Browse the repository at this point in the history
build(project): get rid of warning messages from Cargo
  • Loading branch information
ccamel authored Apr 3, 2024
2 parents cde785f + d1632cc commit 4b9ac2f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 44 deletions.
12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
[workspace]
members = ["contracts/*", "packages/*"]
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.dependencies]
cosmwasm-schema = "1.5.3"
Expand Down
11 changes: 0 additions & 11 deletions contracts/okp4-cognitarium/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,6 @@ exclude = [
[lib]
crate-type = ["cdylib", "rlib"]

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false

[dependencies]
blake3 = "1.5.1"
cosmwasm-schema.workspace = true
Expand Down
11 changes: 0 additions & 11 deletions contracts/okp4-dataverse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,6 @@ exclude = [
[lib]
crate-type = ["cdylib", "rlib"]

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false

[dependencies]
base64 = "0.22.0"
bs58 = "0.5.1"
Expand Down
11 changes: 0 additions & 11 deletions contracts/okp4-law-stone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,6 @@ exclude = [
[lib]
crate-type = ["cdylib", "rlib"]

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false

[dependencies]
cosmwasm-schema.workspace = true
cosmwasm-std.workspace = true
Expand Down
11 changes: 0 additions & 11 deletions contracts/okp4-objectarium/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,6 @@ exclude = [
[lib]
crate-type = ["cdylib", "rlib"]

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false

[dependencies]
base16ct = { version = "0.2.0", features = ["alloc"] }
bs58 = "0.5.1"
Expand Down

0 comments on commit 4b9ac2f

Please sign in to comment.