summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2024-03-01 21:03:28 +0100
committerCanop <cano.petrole@gmail.com>2024-03-01 21:03:28 +0100
commit9d63b5577f67cdaec58b810ae01161d4281bb81f (patch)
tree65d6081fc20a04e30b74018427acfee686e078be
parent9aa394f9bb22e2b228879a38cf22ec2ab680c234 (diff)
version 1.35.0v1.35.0
-rw-r--r--CHANGELOG.md5
-rw-r--r--Cargo.lock20
-rw-r--r--Cargo.toml10
3 files changed, 20 insertions, 15 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b515dc6..e7c9b48 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+
+### v1.35.0 - 2024-03-01
+<a name="v1.35.0"></a>
+- Nerdfont icon theme - Fix #333 - Thanks @JonasLeonhard, @cho-m, @texastoland, @asdf8dfafjk and others
+
### v1.34.0 - 2024-02-24
<a name="v1.34.0"></a>
- new `--verb-output` launch argument, dedicated to the new `:clear_output` and `:write_output` internals - Fix #825
diff --git a/Cargo.lock b/Cargo.lock
index a859159..fc7cf47 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -217,7 +217,7 @@ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
[[package]]
name = "broot"
-version = "1.34.0"
+version = "1.35.0"
dependencies = [
"ahash 0.8.10",
"ansi_colours",
@@ -247,7 +247,7 @@ dependencies = [
"lazy-regex",
"lfs-core",
"libc",
- "memmap2 0.6.2",
+ "memmap2 0.9.4",
"once_cell",
"opener",
"pathdiff",
@@ -1067,9 +1067,9 @@ dependencies = [
[[package]]
name = "indexmap"
-version = "2.2.4"
+version = "2.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "967d6dd42f16dbf0eb8040cb9e477933562684d3918f7d253f2ff9087fb3e7a3"
+checksum = "7b0b929d511467233429c45a44ac1dcaa21ba0f5ba11e4879e6ed28ddb4f9df4"
dependencies = [
"equivalent",
"hashbrown 0.14.3",
@@ -1269,18 +1269,18 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
[[package]]
name = "memmap2"
-version = "0.6.2"
+version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6d28bba84adfe6646737845bc5ebbfa2c08424eb1c37e94a1fd2a82adb56a872"
+checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
dependencies = [
"libc",
]
[[package]]
name = "memmap2"
-version = "0.8.0"
+version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
+checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
dependencies = [
"libc",
]
@@ -2808,9 +2808,9 @@ checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
[[package]]
name = "winnow"
-version = "0.6.3"
+version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44e19b97e00a4d3db3cdb9b53c8c5f87151b5689b82cc86c2848cbdcccb2689b"
+checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8"
dependencies = [
"memchr",
]
diff --git a/Cargo.toml b/Cargo.toml
index bbbafc5..2827409 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "broot"
-version = "1.34.0"
+version = "1.35.0"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/broot"
homepage = "https://dystroy.org/broot"
@@ -44,16 +44,16 @@ image = "0.24"
include_dir = "0.7"
lazy-regex = "3.1.0"
libc = "0.2"
-memmap2 = "0.6"
+memmap2 = "0.9"
once_cell = "1.18" # waiting for https://github.com/rust-lang/rust/issues/109736
opener = "0.6"
pathdiff = "0.2"
phf = { version = "0.11", features = ["macros"] }
-rayon = "1.8"
-resvg = "0.36"
+rayon = "1.9"
+resvg = "0.36" # several options behind, as it's always a PITA to upgrade
secular = { version = "1.0", features = ["normalization", "bmp"] }
serde = { version = "1.0", features = ["derive"] }
-smallvec = "1.11"
+smallvec = "1.11" # version 2 is still alpha
splitty = "1.0"
strict = "0.1.4"
syntect = { package = "syntect-no-panic", version = "4.6.1" } # see issue #485