Skip to content

Commit

Permalink
chore: publish=false on binary packages except lightning-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
snormore committed Jun 1, 2024
1 parent 2784b20 commit a88ca56
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions core/e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "lightning-e2e"
version = "0.0.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 core/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "lightning-rpc"
version = "0.0.0"
edition = "2021"
publish = false

[lib]
name = "lightning_rpc"
Expand Down
3 changes: 2 additions & 1 deletion lib/atomo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ authors = ["Parsa Ghadimi <[email protected]>"]
description = "reserved for atomic snapshots"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fleek-network/lightning"
publish = false

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

Expand All @@ -21,6 +22,6 @@ im = "15.1"
once-ptr = "0.1"

[features]
default = [ "reliable-snapshot" ]
default = ["reliable-snapshot"]
reliable-snapshot = []
fuzz = []
1 change: 1 addition & 0 deletions lib/simulon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ description = "A simulation engine for distributed algorithms"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fleek-network/lightning"
include = ["**/*.rs", "Cargo.toml", "src/ping.bin"]
publish = false

[dependencies]
parking_lot = "0.12"
Expand Down
7 changes: 4 additions & 3 deletions services/ai/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
name = "fleek-service-ai"
version = "0.0.0"
edition.workspace = true
publish = false

[dependencies]
anyhow.workspace = true
base64.workspace = true
borsh = { version = "1.3"}
borsh = { version = "1.3" }
bytes = { version = "1.5", features = ["serde"] }
derive_more = "0.99"
fn-sdk = { path = "../../lib/sdk" }
Expand All @@ -18,9 +19,9 @@ safetensors-ndarray = { path = "../../lib/safetensors-ndarray" }
serde.workspace = true
serde_json.workspace = true
tracing.workspace = true
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio.workspace = true
url ="2.5.0"
url = "2.5.0"
workspace-hack = { version = "0.1", path = "../../etc/workspace-hack" }

[[bin]]
Expand Down
5 changes: 3 additions & 2 deletions services/fetcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "fleek-service-fetcher"
version = "0.0.1"
edition.workspace = true
publish = false

[dependencies]
fn-sdk = { path = "../../lib/sdk" }
Expand All @@ -10,8 +11,8 @@ bytes.workspace = true
anyhow.workspace = true
tracing.workspace = true
arrayref = "0.3.7"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }
url ="2.5.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.5.0"
cid = "0.11"
hex = "0.4"
workspace-hack = { version = "0.1", path = "../../etc/workspace-hack" }
Expand Down
1 change: 1 addition & 0 deletions services/js-poc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "fleek-service-js-poc"
version = "0.0.1"
edition.workspace = true
publish = false

[dependencies]
fn-sdk = { path = "../../lib/sdk" }
Expand Down

0 comments on commit a88ca56

Please sign in to comment.