Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed May 10, 2024
1 parent 5ac19d3 commit 94ccba9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 28 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["contracts/*", "packages/*"]
resolver = "2"

[workspace.package]
rust-version = "1.68.2"
rust-version = "1.74.0"
edition = "2021"
homepage = "https://stargaze.zone"
repository = "https://github.com/public-awesome/marketplace"
Expand All @@ -16,5 +16,5 @@ overflow-checks = true
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
incremental = false
codegen-units = 1
incremental = false
2 changes: 1 addition & 1 deletion contracts/marketplace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ serde = { version = "1.0.145", default-features = false, features = [
sg721-base = { version = "2.1.0", features = ["library"] }
sg721 = { version = "2.1.0", features = ["library"] }
thiserror = "1.0.31"
sg-std = "2.1.0"
sg-std = { version = "2.1.0", features = ["library"] }
cw-utils = "0.16.0"
sg1 = "2.1.0"
sg2 = "2.1.0"
Expand Down
19 changes: 8 additions & 11 deletions contracts/reserve-auction/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
[package]
name = "stargaze-reserve-auction"
version = "1.0.1"
authors = [
"Shane Vitarana <s+git@publicawesome.com>",
"Tasio Victoria <tasiovictoria@ujulabs.com>",
]
name = "stargaze-reserve-auction"
version = "1.0.1"
authors = ["Shane Vitarana <s+git@publicawesome.com>", "Tasio Victoria <tasiovictoria@ujulabs.com>"]
description = "Stargaze Reserve Auction Contract"
edition = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }

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.
Expand Down Expand Up @@ -46,7 +43,7 @@ cw721 = "0.16.0"
cw721-base = { version = "0.16.0", features = ["library"] }
schemars = "0.8.11"
serde = { version = "1.0.145", default-features = false, features = ["derive"] }
sg-std = "2.1.0"
sg-std = { version = "2.1.0", features = ["library"] }
sg1 = "2.1.0"
sg721-base = { version = "2.1.0", features = ["library"] }
thiserror = "1.0.31"
Expand Down
23 changes: 10 additions & 13 deletions packages/sg-marketplace-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
[package]
name = "sg-marketplace-common"
version = "1.3.0"
authors = [
"Shane Vitarana <s@noreply.publicawesome.com>",
"Tasio Victoria <tasiovictoria@ujulabs.com>",
]
name = "sg-marketplace-common"
version = "1.3.0"
authors = ["Shane Vitarana <s@noreply.publicawesome.com>", "Tasio Victoria <tasiovictoria@ujulabs.com>"]
description = "Common functionality used in Stargaze Marketplace contracts"
edition = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }

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.
Expand All @@ -33,10 +30,10 @@ cosmwasm-schema = "1.5.3"
cosmwasm-std = "1.5.3"
cw-storage-plus = "1.2.0"
cw-utils = "1.0.3"
cw721 = "0.18.0"
cw721-base = { version = "0.18.0", features = ["library"] }
cw721 = "0.18.0"
cw721-base = { version = "0.18.0", features = ["library"] }

stargaze-royalty-registry = { version = "0.3.0", features = ["library"] }
stargaze-royalty-registry = { version = "0.3.0", features = ["library"] }

serde = "1.0.196"
thiserror = "1.0.56"
Expand Down

0 comments on commit 94ccba9

Please sign in to comment.