[package] name = "chia_rs" version = "0.15.0" authors = ["Richard Kiss "] edition = "2021" license = "Apache-2.0" description = "Code useful for implementing chia consensus." homepage = "https://github.com/Chia-Network/chia_rs" repository = "https://github.com/Chia-Network/chia_rs" readme = "README.md" [lints] workspace = true [lib] name = "chia_rs" crate-type = ["cdylib"] path = "src/lib.rs" [package.metadata.maturin] python-source = "python" # chia-client and chia-ssl are needed for the wheel sdist to work correctly # ignore any errors from machete about unused dependencies [package.metadata.cargo-machete] ignored = ["chia-client", "chia-ssl"] [dependencies] clvmr = { workspace = true } hex = { workspace = true } pyo3 = { workspace = true, features = ["multiple-pymethods"] } chia-consensus = { workspace = true, features = ["py-bindings"] } chia-bls = { workspace = true, features = ["py-bindings"] } chia-protocol = { workspace = true, features = ["py-bindings"] } clvm-utils = { workspace = true } chia-ssl = { workspace = true } chia-client = { workspace = true }