Renamed to oelf
This commit is contained in:
parent
04e514f00a
commit
387fc40053
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -33,7 +33,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "goblin-pyo3"
|
name = "goblin-pyo3"
|
||||||
version = "0.1.0"
|
version = "0.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"goblin",
|
"goblin",
|
||||||
"pyo3",
|
"pyo3",
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "goblin-pyo3"
|
name = "goblin-pyo3"
|
||||||
version = "0.1.0"
|
version = "0.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "goblin"
|
name = "oelf"
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
@ -3,7 +3,7 @@ requires = ["maturin>=1,<2"]
|
||||||
build-backend = "maturin"
|
build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "goblin"
|
name = "oelf"
|
||||||
requires-python = ">=3.7"
|
requires-python = ">=3.7"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Rust",
|
"Programming Language :: Rust",
|
||||||
|
|
|
@ -153,7 +153,7 @@ impl Drop for Object {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[pymodule]
|
#[pymodule]
|
||||||
#[pyo3(name = "goblin")]
|
#[pyo3(name = "oelf")]
|
||||||
fn py_goblin(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
|
fn py_goblin(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
|
||||||
m.add_class::<Object>()?;
|
m.add_class::<Object>()?;
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in a new issue