forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(compliance): explicit publishability (near#5764)
Tracking issue: near#5763 All packages must have explicit "publishability" by specifying `publish = <true/false>` but must never be omitted to avoid discrepancies. Resolves: ```console (i) These packages should have the `publish` specification: [expected: publish = <true/false>] • near-chain-configs v0.0.0 (core/chain-configs/Cargo.toml) • near-crypto v0.0.0 (core/crypto/Cargo.toml) • near-account-id v0.0.0 (core/account-id/Cargo.toml) • near-primitives v0.0.0 (core/primitives/Cargo.toml) • near-primitives-core v0.0.0 (core/primitives-core/Cargo.toml) • near-rpc-error-macro v0.0.0 (tools/rpctypegen/macro/Cargo.toml) • near-rpc-error-core v0.0.0 (tools/rpctypegen/core/Cargo.toml) • near-vm-errors v0.0.0 (runtime/near-vm-errors/Cargo.toml) • near-metrics v0.0.0 (core/metrics/Cargo.toml) • near-vm-logic v0.0.0 (runtime/near-vm-logic/Cargo.toml) • near-chain-primitives v0.0.0 (chain/chain-primitives/Cargo.toml) • near-chunks-primitives v0.0.0 (chain/chunks-primitives/Cargo.toml) • near-network-primitives v0.0.0 (chain/network-primitives/Cargo.toml) • near-client-primitives v0.0.0 (chain/client-primitives/Cargo.toml) • near-jsonrpc-primitives v0.0.0 (chain/jsonrpc-primitives/Cargo.toml) ```
- Loading branch information
Showing
15 changed files
with
15 additions
and
0 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,6 +2,7 @@ | |
name = "near-chain-primitives" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-chunks-primitives" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-client-primitives" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-jsonrpc-primitives" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-network-primitives" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-account-id" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-chain-configs" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +3,7 @@ name = "near-crypto" | |
version = "0.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +3,7 @@ name = "near-metrics" | |
version = "0.0.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-primitives-core" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-primitives" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-vm-errors" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-vm-logic" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-rpc-error-core" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|
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,6 +2,7 @@ | |
name = "near-rpc-error-macro" | ||
version = "0.0.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
publish = true | ||
# Please update rust-toolchain.toml as well when changing version here: | ||
rust-version = "1.56.0" | ||
edition = "2021" | ||
|