Skip to content

Commit

Permalink
fix cargo version
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Jul 1, 2024
1 parent e6a9371 commit 9db7ac9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bindings/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 3 additions & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
] }
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion examples/rust/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion examples/rust/logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

0 comments on commit 9db7ac9

Please sign in to comment.