Skip to content

Commit 060cd70

Browse files
authored
pycessing->processing (#32)
1 parent 7621eaa commit 060cd70

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

crates/processing_pyo3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2024"
77
workspace = true
88

99
[lib]
10-
name = "pycessing"
10+
name = "processing"
1111
crate-type = ["cdylib"]
1212

1313
[dependencies]

crates/processing_pyo3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ $ maturin develop
1414
# ...
1515
#
1616
$ python
17-
>>> import pycessing
18-
>>> pycessing.size(500, 500)
17+
>>> import processing
18+
>>> processing.size(500, 500)
1919
```

crates/processing_pyo3/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["maturin>=1.10,<2.0"]
33
build-backend = "maturin"
44

55
[project]
6-
name = "pycessing"
6+
name = "processing"
77
requires-python = ">=3.8"
88
classifiers = [
99
"Programming Language :: Rust",

crates/processing_pyo3/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ mod glfw;
22
use pyo3::prelude::*;
33

44
#[pymodule]
5-
mod pycessing {
5+
mod processing {
66
use crate::glfw::GlfwContext;
77
use processing::prelude::*;
88
use pyo3::prelude::*;

0 commit comments

Comments
 (0)