mirror of
https://github.com/logos-blockchain/logos-blockchain-circuits.git
synced 2026-05-18 15:29:26 +00:00
36 lines
1.7 KiB
TOML
36 lines
1.7 KiB
TOML
[workspace.package]
|
|
categories = ["cryptography", "external-ffi-bindings"]
|
|
description = "Rust bindings for the Logos Blockchain Circuits, providing a safe and efficient interface for interacting with the underlying cryptographic circuits."
|
|
edition = "2024"
|
|
keywords = ["blockchain", "privacy"]
|
|
license = "MIT or Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/logos-blockchain/logos-blockchain-circuits"
|
|
version = "0.4.2"
|
|
|
|
[workspace]
|
|
members = [
|
|
"logos-blockchain-circuits-poc-sys",
|
|
"logos-blockchain-circuits-pol-sys",
|
|
"logos-blockchain-circuits-poq-sys",
|
|
"logos-blockchain-circuits-signature-sys",
|
|
"logos-blockchain-circuits-types",
|
|
"logos-blockchain-circuits-utils"
|
|
]
|
|
resolver = "3"
|
|
|
|
[workspace.dependencies]
|
|
# Internal
|
|
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-types = { default-features = false, package = "logos-blockchain-circuits-types", path = "./logos-blockchain-circuits-types" }
|
|
lbc-utils = { default-features = false, package = "logos-blockchain-circuits-utils", path = "./logos-blockchain-circuits-utils" }
|
|
|
|
# External
|
|
flate2 = "1"
|
|
libc = "0.2.185"
|
|
tar = "0.4"
|
|
ureq = "3.3.0"
|