Release 0.8.4

This commit is contained in:
Xavier Moffett 2024-06-14 17:04:59 -04:00
parent 8b3d4ee651
commit e988b90c11
Signed by: Sapphirus
GPG Key ID: A6C061B2CEA1A7AC
4 changed files with 17 additions and 17 deletions

22
Cargo.lock generated
View File

@ -358,9 +358,9 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
[[package]]
name = "memchr"
version = "2.7.2"
version = "2.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
[[package]]
name = "memoffset"
@ -443,7 +443,7 @@ dependencies = [
[[package]]
name = "pacwrap"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"alpm",
"command-fds",
@ -459,7 +459,7 @@ dependencies = [
[[package]]
name = "pacwrap-agent"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"alpm",
"bincode",
@ -469,7 +469,7 @@ dependencies = [
[[package]]
name = "pacwrap-core"
version = "0.8.3"
version = "0.8.4"
dependencies = [
"alpm",
"bincode",
@ -564,9 +564,9 @@ dependencies = [
[[package]]
name = "regex"
version = "1.10.4"
version = "1.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
dependencies = [
"aho-corasick",
"memchr",
@ -576,9 +576,9 @@ dependencies = [
[[package]]
name = "regex-automata"
version = "0.4.6"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
dependencies = [
"aho-corasick",
"memchr",
@ -587,9 +587,9 @@ dependencies = [
[[package]]
name = "regex-syntax"
version = "0.8.3"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
[[package]]
name = "rustix"

View File

@ -1,6 +1,6 @@
[package]
name = "pacwrap-agent"
version = "0.8.3"
version = "0.8.4"
authors = [ "Xavier Moffett <sapphirus@azorium.net>" ]
license ="GPL-3.0-only"
readme = "README.md"
@ -15,7 +15,7 @@ keywords = [ "bubblewrap", "sandbox", "package", "manager", "archlinux" ]
categories = [ "command-line-utilities", "virtualization", "filesystem", "concurrency", "caching" ]
[dependencies]
pacwrap-core = { path = "../pacwrap-core", version = "0.8.3" }
pacwrap-core = { path = "../pacwrap-core", version = "0.8.4" }
# Serialization
serde = { version = "1.0", features = ["derive"] }

View File

@ -1,6 +1,6 @@
[package]
name = "pacwrap-core"
version = "0.8.3"
version = "0.8.4"
authors = [ "Xavier Moffett <sapphirus@azorium.net>" ]
license ="GPL-3.0-only"
readme = "README.md"

View File

@ -1,6 +1,6 @@
[package]
name = "pacwrap"
version = "0.8.3"
version = "0.8.4"
authors = [ "Xavier Moffett <sapphirus@azorium.net>" ]
license ="GPL-3.0-only"
readme = "README.md"
@ -16,7 +16,7 @@ keywords = [ "bubblewrap", "sandbox", "package", "manager", "archlinux" ]
categories = [ "command-line-utilities", "virtualization", "filesystem", "concurrency", "caching" ]
[dependencies]
pacwrap-core = { path = "../pacwrap-core/", version = "0.8.3" }
pacwrap-core = { path = "../pacwrap-core/", version = "0.8.4" }
indexmap = { version = "2.0.0", features = ["serde", "rayon"] }
nix = "0.22.3, <= 0.22.3"
simplebyteunit = "0.2.1"
@ -34,4 +34,4 @@ sha2 = "0.10.8"
regex = "1.10.3"
[build-dependencies]
pacwrap-core = { path = "../pacwrap-core/", version = "0.8.3" }
pacwrap-core = { path = "../pacwrap-core/", version = "0.8.4" }