yeslogic / allsorts-tools

Various font tools built using Allsorts
Apache License 2.0
79 stars 12 forks source link

Use Allsorts 0.9.1 #19

Closed alfiedotwtf closed 2 years ago

wezm commented 2 years ago

This didn't actually bump the regex version. Something is holding it back at 1.4.x. even when running cargo update -p allsorts -p predicates -p regex.

cargo tree doesn't shed any light either

$ cargo tree -i -p regex
regex v1.4.6
└── predicates v1.0.8
    └── assert_cmd v1.0.3
        [dev-dependencies]
        └── allsorts-tools v0.6.0 (/home/wmoore/Work/allsorts-tools)
    [dev-dependencies]
    └── allsorts-tools v0.6.0 (/home/wmoore/Work/allsorts-tools)

May as well just update everything with cargo update

wezm commented 2 years ago

Suggest:

diff --git a/Cargo.toml b/Cargo.toml
index 1078bf2..bb93e4e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -21,4 +21,4 @@ version = "0.9.0"

 [dev-dependencies]
 assert_cmd = "1"
-predicates = "1"
+predicates = "2"

then cargo update

alfiedotwtf commented 2 years ago

Ah!

Ok thanks, I thought it was just what we pulled in. Fixing now.