fix(deps): pin dependencies (#5438)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Hinton <hinton@users.noreply.github.com>
This commit is contained in:
parent
909d54e326
commit
d9550fcecb
|
@ -48,9 +48,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitflags"
|
name = "bitflags"
|
||||||
version = "2.1.0"
|
version = "2.2.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c70beb79cbb5ce9c4f8e20849978f34225931f665bb49efa6982875a4d5facb3"
|
checksum = "24a6904aef64d73cf10ab17ebace7befb918b82164785cb89907993be7f83813"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "block-buffer"
|
name = "block-buffer"
|
||||||
|
@ -578,7 +578,7 @@ version = "2.12.4"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "556470a21074b55be8adee5f27ca04389cfdaca323a28b4b0e9c15466de94731"
|
checksum = "556470a21074b55be8adee5f27ca04389cfdaca323a28b4b0e9c15466de94731"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.1.0",
|
"bitflags 2.2.1",
|
||||||
"ctor",
|
"ctor",
|
||||||
"napi-derive",
|
"napi-derive",
|
||||||
"napi-sys",
|
"napi-sys",
|
||||||
|
|
|
@ -9,30 +9,30 @@ version = "0.0.0"
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default=[]
|
default = []
|
||||||
manual_test=[]
|
manual_test = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aes = "0.8.2"
|
aes = "=0.8.2"
|
||||||
anyhow = "1.0"
|
anyhow = "=1.0.70"
|
||||||
base64 = "0.21.0"
|
base64 = "=0.21.0"
|
||||||
cbc = { version = "0.1.2", features = ["alloc"] }
|
cbc = { version = "=0.1.2", features = ["alloc"] }
|
||||||
napi = {version = "2.9.1", features = ["async"]}
|
napi = { version = "=2.12.4", features = ["async"] }
|
||||||
napi-derive = "2.9.1"
|
napi-derive = "=2.12.3"
|
||||||
rand = "0.8.5"
|
rand = "=0.8.5"
|
||||||
retry = "2.0.0"
|
retry = "=2.0.0"
|
||||||
scopeguard = "1.1.0"
|
scopeguard = "=1.1.0"
|
||||||
sha2 = "0.10.6"
|
sha2 = "=0.10.6"
|
||||||
thiserror = "1.0.38"
|
thiserror = "=1.0.40"
|
||||||
tokio = {version = "1.17.0", features = ["full"]}
|
tokio = { version = "=1.27.0", features = ["full"] }
|
||||||
typenum = "1.16.0"
|
typenum = "=1.16.0"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
napi-build = "2.0.1"
|
napi-build = "=2.0.1"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
widestring = "0.5.1"
|
widestring = "=0.5.1"
|
||||||
windows = {version = "0.48.0", features = [
|
windows = { version = "=0.48.0", features = [
|
||||||
"Foundation",
|
"Foundation",
|
||||||
"Security_Credentials_UI",
|
"Security_Credentials_UI",
|
||||||
"Security_Cryptography",
|
"Security_Cryptography",
|
||||||
|
@ -42,16 +42,16 @@ windows = {version = "0.48.0", features = [
|
||||||
"Win32_System_WinRT",
|
"Win32_System_WinRT",
|
||||||
"Win32_UI_Input_KeyboardAndMouse",
|
"Win32_UI_Input_KeyboardAndMouse",
|
||||||
"Win32_UI_WindowsAndMessaging",
|
"Win32_UI_WindowsAndMessaging",
|
||||||
]}
|
] }
|
||||||
|
|
||||||
[target.'cfg(windows)'.dev-dependencies]
|
[target.'cfg(windows)'.dev-dependencies]
|
||||||
keytar = "0.1.6"
|
keytar = "=0.1.6"
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
core-foundation = "0.9.3"
|
core-foundation = "=0.9.3"
|
||||||
security-framework = "2.6.1"
|
security-framework = "=2.8.2"
|
||||||
security-framework-sys = "2.6.1"
|
security-framework-sys = "=2.8.0"
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
gio = "0.15.6"
|
gio = "=0.15.12"
|
||||||
libsecret = "0.1.4"
|
libsecret = "=0.1.5"
|
||||||
|
|
Loading…
Reference in New Issue