rename kornia-core to kornia-tensor #195
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes significant changes to the
kornia
project, particularly focusing on renaming and restructuring core components. The most important changes involve renaming thekornia-core
andkornia-core-ops
crates tokornia-tensor
andkornia-tensor-ops
, respectively, and updating dependencies and imports accordingly.Renaming and restructuring:
Cargo.toml
: Updated workspace members to use wildcard notation for crates and addedkornia-tensor
andkornia-tensor-ops
while removingkornia-core
andkornia-core-ops
. [1] [2]crates/kornia-core
tocrates/kornia-tensor
and updated the package name inCargo.toml
.crates/kornia-core-ops
tocrates/kornia-tensor-ops
and updated the package name inCargo.toml
. [1] [2]Dependency and import updates:
Cargo.toml
files to replacekornia-core
withkornia-tensor
. [1] [2] [3]kornia-core
withkornia-tensor
. [1] [2] [3] [4] [5] [6] [7]Error handling and test updates:
crates/kornia-image/src/error.rs
to usekornia_tensor::TensorError
instead ofkornia_core::TensorError
.kornia_tensor
instead ofkornia_core
. [1] [2]