diff --git a/bindings/node/Cargo.toml b/bindings/node/Cargo.toml index 00cdd4c..ec9bee9 100644 --- a/bindings/node/Cargo.toml +++ b/bindings/node/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib"] # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix napi = { version = "2.12.2", default-features = false, features = ["napi4"] } napi-derive = "2.12.2" -rookie = { path = "../../rookie-rs" } +rookie = { path = "../../rookie-rs", version = "0.5.2-beta.0" } [build-dependencies] napi-build = "2.0.1" diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 190e5a2..e2b77f7 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -11,4 +11,6 @@ crate-type = ["cdylib"] [dependencies] pyo3 = "0.20.3" pyo3-log = "0.9.0" -rookie = { path = "../../rookie-rs", features = ["pyo3"] } +rookie = { path = "../../rookie-rs", version = "0.5.2-beta.0", features = [ + "pyo3", +] } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index cdc96c2..b2c6f6e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" clap = { version = "4.4.6", features = ["derive"] } env_logger = { version = "0.11.3", features = ["color"] } lazy_static = "1.4.0" -rookie = { path = "../rookie-rs" } +rookie = { path = "../rookie-rs", version = "0.5.2-beta.0" } serde_json = "1.0.107" diff --git a/examples/rust/http/Cargo.toml b/examples/rust/http/Cargo.toml index 7b33bcc..a7599e1 100644 --- a/examples/rust/http/Cargo.toml +++ b/examples/rust/http/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" [dependencies] regex = "1.9.5" reqwest = { version = "0.11.20", features = ["blocking"] } -rookie = { path = "../../../rookie-rs" } +rookie = { path = "../../../rookie-rs", version = "0.5.2-beta.0" } diff --git a/examples/rust/logging/Cargo.toml b/examples/rust/logging/Cargo.toml index bbd05f3..3e4ec3d 100644 --- a/examples/rust/logging/Cargo.toml +++ b/examples/rust/logging/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] env_logger = { version = "0.11.3", features = ["color"] } -rookie = { path = "../../../rookie-rs" } +rookie = { path = "../../../rookie-rs", version = "0.5.2-beta.0" }