-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add needed items for sdist * add missing parts to sdist tar archive * Update cargo lock * use correct path * some debugging items * Need to cleanup directory * Add in some machete ignores
- Loading branch information
Showing
3 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ version = "0.14.1" | |
authors = ["Richard Kiss <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
license-file = "../LICENSE" | ||
description = "Code useful for implementing chia consensus." | ||
homepage = "https://github.com/Chia-Network/chia_rs" | ||
repository = "https://github.com/Chia-Network/chia_rs" | ||
|
@@ -21,6 +20,11 @@ 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 } | ||
|
@@ -29,3 +33,5 @@ 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 } |