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