Skip to content

Commit

Permalink
Initial exploration of exporting a Rust codec to Python
Browse files Browse the repository at this point in the history
  • Loading branch information
juntyr committed Aug 1, 2024
1 parent e512d43 commit 0f0756b
Show file tree
Hide file tree
Showing 7 changed files with 1,072 additions and 75 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ numcodecs = { path = "crates/numcodecs", default-features = false }
numcodecs-python = { path = "crates/numcodecs-python", default-features = false }

# crates.io third-party dependencies
convert_case = { version = "0.6", default-features = false }
numpy = { version = "0.21", default-features = false }
ndarray = { version = "0.15", default-features = false }
pyo3 = { version = "0.21", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions crates/numcodecs-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ keywords = ["numcodecs", "compression", "encoding", "python", "pyo3"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
convert_case = { workspace = true }
numcodecs = { workspace = true }
numpy = { workspace = true }
pyo3 = { workspace = true }
Expand Down
Loading

0 comments on commit 0f0756b

Please sign in to comment.