feat(flags). Make prebuilt flag a default. (#35)

This commit is contained in:
Álex 2026-05-29 16:33:34 +02:00 committed by GitHub
parent cc41762cb5
commit 06e6dbe762
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 10 additions and 6 deletions

View File

@ -25,10 +25,10 @@ resolver = "3"
# Internal
lbc-common = { default-features = false, package = "logos-blockchain-circuits-common", path = "./logos-blockchain-circuits-common" }
lbc-build = { package = "logos-blockchain-circuits-build", path = "./logos-blockchain-circuits-build" }
lbc-poc-sys = { default-features = false, package = "logos-blockchain-circuits-poc-sys", path = "./logos-blockchain-circuits-poc-sys" }
lbc-pol-sys = { default-features = false, package = "logos-blockchain-circuits-pol-sys", path = "./logos-blockchain-circuits-pol-sys" }
lbc-poq-sys = { default-features = false, package = "logos-blockchain-circuits-poq-sys", path = "./logos-blockchain-circuits-poq-sys" }
lbc-signature-sys = { default-features = false, package = "logos-blockchain-circuits-signature-sys", path = "./logos-blockchain-circuits-signature-sys" }
lbc-poc-sys = { package = "logos-blockchain-circuits-poc-sys", path = "./logos-blockchain-circuits-poc-sys" }
lbc-pol-sys = { package = "logos-blockchain-circuits-pol-sys", path = "./logos-blockchain-circuits-pol-sys" }
lbc-poq-sys = { package = "logos-blockchain-circuits-poq-sys", path = "./logos-blockchain-circuits-poq-sys" }
lbc-signature-sys = { package = "logos-blockchain-circuits-signature-sys", path = "./logos-blockchain-circuits-signature-sys" }
lbc-types = { default-features = false, package = "logos-blockchain-circuits-types", path = "./logos-blockchain-circuits-types" }
# External

View File

@ -10,6 +10,7 @@ repository.workspace = true
version.workspace = true
[features]
default = ["prebuilt"]
prebuilt = ["lbc-build/prebuilt"]
[lints]

View File

@ -10,6 +10,7 @@ repository.workspace = true
version.workspace = true
[features]
default = ["prebuilt"]
prebuilt = ["lbc-build/prebuilt"]
[lints]

View File

@ -10,6 +10,7 @@ repository.workspace = true
version.workspace = true
[features]
default = ["prebuilt"]
prebuilt = ["lbc-build/prebuilt"]
[lints]

View File

@ -10,6 +10,7 @@ repository.workspace = true
version.workspace = true
[features]
default = ["prebuilt"]
prebuilt = ["lbc-build/prebuilt"]
[lints]

View File

@ -6,5 +6,5 @@ version.workspace = true
publish = false
[dev-dependencies]
lbc-pol-sys = { workspace = true, features = ["prebuilt"] }
lbc-poq-sys = { workspace = true, features = ["prebuilt"] }
lbc-pol-sys = { workspace = true }
lbc-poq-sys = { workspace = true }