Skip to content

Commit

Permalink
Set opt-out flag for Rust crates to prevent accidental publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
cr-tk committed Nov 30, 2023
1 parent 7d3f7ca commit 9346dae
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/qos_aws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_aws"
version = "0.1.0"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
1 change: 1 addition & 0 deletions src/qos_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_client"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
qos_core = { path = "../qos_core", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions src/qos_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_core"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
qos_crypto = { path = "../qos_crypto" }
Expand Down
1 change: 1 addition & 0 deletions src/qos_crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_crypto"
version = "0.1.0"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
1 change: 1 addition & 0 deletions src/qos_enclave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "1.2.0"
authors = [""]
edition = "2018"
rust-version = "1.61"
publish = false

[dependencies]
nitro-cli = { git = "https://github.com/aws/aws-nitro-enclaves-cli", version = "1.2.2" }
Expand Down
1 change: 1 addition & 0 deletions src/qos_hex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_hex"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
serde = {version = "1", optional = true, default-features = false }
Expand Down
1 change: 1 addition & 0 deletions src/qos_host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_host"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
qos_core = { path = "../qos_core", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions src/qos_nsm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_nsm"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
qos_hex = { path = "../qos_hex" }
Expand Down
1 change: 1 addition & 0 deletions src/qos_p256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_p256"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
qos_hex = { path = "../qos_hex" }
Expand Down
1 change: 1 addition & 0 deletions src/qos_system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_system"
version = "0.1.0"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
1 change: 1 addition & 0 deletions src/qos_test_primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "qos_test_primitives"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
rand = "0.8"

0 comments on commit 9346dae

Please sign in to comment.