-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust for move of libcramjam and CLI to own repos
- Loading branch information
1 parent
60cc354
commit e369d9d
Showing
89 changed files
with
150 additions
and
2,550 deletions.
There are no files selected for viewing
This file was deleted.
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
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 |
---|---|---|
@@ -1,14 +1,33 @@ | ||
[workspace] | ||
members = [ | ||
"libcramjam", | ||
"cramjam-cli", | ||
"cramjam-python" | ||
] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
[package] | ||
name = "cramjam-python" | ||
version = "2.8.4-rc1" | ||
authors = ["Miles Granger <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/milesgranger/cramjam" | ||
license = "MIT" | ||
description = "Thin Python bindings to de/compression algorithms in Rust" | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[lib] | ||
name = "cramjam" | ||
crate-type = ["cdylib"] | ||
|
||
[features] | ||
default = ["extension-module"] | ||
extension-module = ["pyo3/extension-module"] | ||
generate-import-lib = ["pyo3/generate-import-lib"] # needed for Windows PyPy builds | ||
|
||
blosc2-static = ["libcramjam/blosc2-static"] | ||
blosc2-shared = ["libcramjam/blosc2-shared"] | ||
use-system-blosc2 = ["libcramjam/use-system-blosc2"] | ||
|
||
|
||
[dependencies] | ||
pyo3 = { version = "^0.20", default-features = false, features = ["macros"] } | ||
libcramjam = { version = "^0.4" } | ||
|
||
[build-dependencies] | ||
pyo3-build-config = "^0.20" | ||
|
||
[profile.release] | ||
strip = true | ||
|
File renamed without changes.
Oops, something went wrong.