rusterize 0.4.0__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rusterize might be problematic. Click here for more details.
- {rusterize-0.4.0 → rusterize-0.4.1}/.github/workflows/CI.yml +2 -3
- {rusterize-0.4.0 → rusterize-0.4.1}/.gitignore +4 -17
- {rusterize-0.4.0 → rusterize-0.4.1}/Cargo.lock +499 -389
- {rusterize-0.4.0 → rusterize-0.4.1}/Cargo.toml +5 -5
- {rusterize-0.4.0 → rusterize-0.4.1}/PKG-INFO +36 -21
- {rusterize-0.4.0 → rusterize-0.4.1}/README.md +35 -21
- {rusterize-0.4.0 → rusterize-0.4.1}/python/rusterize/__init__.py +41 -22
- {rusterize-0.4.0 → rusterize-0.4.1}/.github/workflows/test-compile.yml +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/LICENSE +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/img/plot.png +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/pyproject.toml +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/rust-toolchain.toml +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/rustfmt.toml +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/allocator.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/edge_collection.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/geom/from_shapely.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/geom/validate.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/lib.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/pixel_functions.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/prelude.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/rasterize_geometry.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/rusterize_impl.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/structs/edge.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/structs/raster.rs +0 -0
- {rusterize-0.4.0 → rusterize-0.4.1}/src/to_xarray.rs +0 -0
|
@@ -3,19 +3,12 @@
|
|
|
3
3
|
debug/
|
|
4
4
|
target/
|
|
5
5
|
|
|
6
|
-
# # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
|
7
|
-
# # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
|
8
|
-
# Cargo.lock
|
|
9
|
-
|
|
10
6
|
# These are backup files generated by rustfmt
|
|
11
7
|
**/*.rs.bk
|
|
12
8
|
|
|
13
9
|
# MSVC Windows builds of rustc generate these, which store debugging information
|
|
14
10
|
*.pdb
|
|
15
11
|
|
|
16
|
-
# IDE stuff
|
|
17
|
-
.idea
|
|
18
|
-
|
|
19
12
|
# Virtual environment
|
|
20
13
|
.venv
|
|
21
14
|
.env
|
|
@@ -25,20 +18,14 @@ target/
|
|
|
25
18
|
|
|
26
19
|
# Pycache
|
|
27
20
|
**/__pycache__
|
|
28
|
-
|
|
29
|
-
# Tests
|
|
30
|
-
tests/
|
|
31
21
|
.pytest_cache
|
|
32
22
|
|
|
33
23
|
# Benchmarks
|
|
34
24
|
.benchmarks
|
|
35
25
|
|
|
36
|
-
#
|
|
26
|
+
# other stuff
|
|
37
27
|
README_files
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
=======
|
|
42
|
-
# uv
|
|
43
|
-
>>>>>>> caa7e768e9026d3666b20a660792b4d17e200102
|
|
28
|
+
tests
|
|
29
|
+
.ruff_cache
|
|
30
|
+
.git
|
|
44
31
|
uv.lock
|