Skip to content

Commit

Permalink
chore: make cargo-near-build optional in manifest (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
dj8yfo authored Nov 4, 2024
1 parent 10a6c1a commit 0f44e0b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions workspaces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ Library for automating workflows and testing NEAR smart contracts.
async-trait = "0.1"
base64 = "0.22"
bs58 = "0.5"
cargo_metadata = { version = "0.18", optional = true }
cargo-near-build = { version = "0.2.0" }
cargo-near-build = { version = "0.2.0", optional = true }
chrono = "0.4.19"
fs2 = "0.4"
rand = "0.8.4"
Expand Down Expand Up @@ -57,9 +56,9 @@ tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }

[features]
default = ["install"]
install = [] # Install the sandbox binary during compile time
install = [] # Install the sandbox binary during compile time
interop_sdk = ["near-sdk"]
unstable = ["cargo_metadata"]
unstable = ["dep:cargo-near-build"]
experimental = ["near-chain-configs"]

[package.metadata.docs.rs]
Expand Down

0 comments on commit 0f44e0b

Please sign in to comment.