diff --git a/kscaleos/bindings/Cargo.toml b/kscaleos/bindings/Cargo.toml index 998ce75..88d4c16 100644 --- a/kscaleos/bindings/Cargo.toml +++ b/kscaleos/bindings/Cargo.toml @@ -20,7 +20,7 @@ pyo3 = { version = ">= 0.21.0", features = ["extension-module"] } pyo3-stub-gen = ">= 0.6.0" # Other packages in the workspace. -kscaleos = { path = "../kscaleos" } +# kscaleos = { path = "../kscaleos" } [[bin]] diff --git a/kscaleos/bindings/src/lib.rs b/kscaleos/bindings/src/lib.rs index c6c720a..36355bf 100644 --- a/kscaleos/bindings/src/lib.rs +++ b/kscaleos/bindings/src/lib.rs @@ -1,4 +1,4 @@ -use kscaleos::hello_world as kscaleos_hello_world; +// use kscaleos::hello_world as kscaleos_hello_world; use pyo3::prelude::*; use pyo3::{wrap_pyfunction, PyResult}; use pyo3_stub_gen::define_stub_info_gatherer; @@ -7,7 +7,8 @@ use pyo3_stub_gen::derive::gen_stub_pyfunction; #[gen_stub_pyfunction] #[pyfunction] pub fn hello_world() -> PyResult<()> { - kscaleos_hello_world(); + // kscaleos_hello_world(); + println!("Hello, world!"); Ok(()) }