Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resolver = "3"
version = "0.15.0"

[workspace.package]
version = "0.5.0"
version = "0.6.0"
edition = "2024"
authors = ["Aurora Labs <hello@aurora.dev>"]
# An update of the MSRV requires updating:
Expand All @@ -17,8 +17,8 @@ rust-version = "1.86.0"
description = "Ergonomic plugin system to extend NEAR contracts."
license = "CC0-1.0"
readme = "README.md"
repository = "https://github.com/aurora-is-near/near-plugins"
homepage = "https://github.com/aurora-is-near/near-plugins"
repository = "https://github.com/Near-One/near-plugins"
homepage = "https://github.com/Near-One/near-plugins"
Comment on lines +20 to +21
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

repository/homepage were updated under [workspace.package], but the member crates (near-plugins, near-plugins-derive) don’t currently inherit these fields (their Cargo.toml only has authors/edition/rust-version/version.workspace = true). As a result, the published crate metadata will still be missing/unchanged. Consider adding repository.workspace = true and homepage.workspace = true (and any other shared metadata you want) in each crate’s [package] section, or set the URLs directly per crate.

Copilot uses AI. Check for mistakes.
keywords = ["near", "smart contract", "plugin"]

[workspace.dependencies]
Expand Down
6 changes: 6 additions & 0 deletions near-plugins-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ authors.workspace = true
edition.workspace = true
rust-version.workspace = true
version.workspace = true
description.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true

[lib]
proc-macro = true
Expand Down
6 changes: 6 additions & 0 deletions near-plugins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ authors.workspace = true
edition.workspace = true
rust-version.workspace = true
version.workspace = true
description.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
Loading