Merge branch 'main' of ssh://github.com/orhun/systeroid

This commit is contained in:
Orhun Parmaksız 2023-01-01 19:59:14 +03:00
commit 7dad6051ac
No known key found for this signature in database
GPG key ID: F83424824B3E4B90
3 changed files with 11 additions and 11 deletions

16
Cargo.lock generated
View file

@ -680,18 +680,18 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "serde"
version = "1.0.150"
version = "1.0.151"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e326c9ec8042f1b5da33252c8a37e9ffbd2c9bef0155215b6e6c80c790e05f91"
checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.150"
version = "1.0.151"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42a3df25b0713732468deadad63ab9da1f1fd75a48a15024b50363f128db627e"
checksum = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8"
dependencies = [
"proc-macro2",
"quote",
@ -832,18 +832,18 @@ dependencies = [
[[package]]
name = "thiserror"
version = "1.0.37"
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.37"
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
dependencies = [
"proc-macro2",
"quote",

View file

@ -13,11 +13,11 @@ rust-version = "1.56.1"
[dependencies]
sysctl = "0.5.4"
thiserror = "1.0.37"
thiserror = "1.0.38"
lazy_static = "1.4.0"
rayon = "1.6.0"
colored = "2.0.0"
serde = { version = "1.0.150", features = ["derive"] }
serde = { version = "1.0.151", features = ["derive"] }
serde_json = "1.0.89"
dirs-next = "2.0.0"
parseit = { version = "0.1.1", features = ["gzip"] }

View file

@ -20,7 +20,7 @@ clipboard = ["copypasta-ext"]
[dependencies]
termion = "2.0.1"
unicode-width = "0.1.10"
thiserror = "1.0.37"
thiserror = "1.0.38"
getopts = "0.2.21"
copypasta-ext = { version = "0.3.7", optional = true }
colorsys = "0.6.6"