Skip to content

Commit

Permalink
SM-1237: Update all pyo3 crates
Browse files Browse the repository at this point in the history
  • Loading branch information
coltonhurst committed Jul 11, 2024
1 parent fd9638e commit e2d3c4b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/bitwarden-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ crate-type = ["cdylib"]

[dependencies]
bitwarden-json = { path = "../bitwarden-json", features = ["secrets"] }
pyo3 = { version = "0.21.2", features = ["extension-module"] }
pyo3-log = "0.10.0"
pyo3 = { version = "0.22.1", features = ["extension-module"] }
pyo3-log = "0.11.0"

[build-dependencies]
pyo3-build-config = { version = "0.21.2" }
pyo3-build-config = { version = "0.22.1" }

[target.'cfg(not(target_arch="wasm32"))'.dependencies]
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }
Expand Down
1 change: 1 addition & 0 deletions crates/bitwarden-py/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pub struct BitwardenClient(JsonClient);
#[pymethods]
impl BitwardenClient {
#[new]
#[pyo3(signature = (settings_string=None))]
pub fn new(settings_string: Option<String>) -> Self {
// This will only fail if another logger was already initialized, so we can ignore the
// result
Expand Down

0 comments on commit e2d3c4b

Please sign in to comment.