Skip to content

Commit 8cbce4a

Browse files
committed
messy(deps): switch to git miette
1 parent cbc0e81 commit 8cbce4a

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ members = [
1818
dead_code = "allow"
1919

2020
[dependencies]
21-
miette = { version = "7.2.0", features = ["fancy"] }
21+
# miette = { version = "7.2.0", features = ["fancy"] }
22+
miette = { git = "https://github.com/TheLostLambda/miette", features = ["fancy"] }
2223
once_cell = "1.19.0"
2324
polychem = { path = "crates/polychem/" }
2425
rustyline = "14.0.0"

crates/muropeptide/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
miette = "7.2.0"
7+
# miette = "7.2.0"
8+
miette = { git = "https://github.com/TheLostLambda/miette" }
89
nom = "7.1.3"
910
nom-miette = { path = "../nom-miette" }
1011
polychem = { path = "../polychem" }
@@ -13,7 +14,8 @@ thiserror = "1.0.58"
1314
[dev-dependencies]
1415
divan = "0.1.14"
1516
insta = { version = "1.36.1", features = ["redactions", "ron"] }
16-
miette = { version = "7.2.0", features = ["fancy"] }
17+
# miette = { version = "7.2.0", features = ["fancy"] }
18+
miette = { git = "https://github.com/TheLostLambda/miette", features = ["fancy"] }
1719
once_cell = "1.19.0"
1820
rust_decimal = "1.34.3"
1921
rust_decimal_macros = "1.34.2"

crates/nom-miette/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ edition = "2021"
66
[dependencies]
77
ahash = "0.8.11"
88
getrandom = { version = "0.2", features = ["js"] }
9-
miette = "7.2.0"
9+
# miette = "7.2.0"
10+
miette = { git = "https://github.com/TheLostLambda/miette" }
1011
nom = "7.1.3"
1112
thiserror = "1.0.58"
1213

crates/polychem/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ ahash = "0.8.11"
99
getrandom = { version = "0.2", features = ["js"] }
1010
itertools = "0.12.1"
1111
knuffel = { git = "https://github.com/TheLostLambda/knuffel.git" }
12-
miette = "7.2.0"
12+
# miette = "7.2.0"
13+
miette = { git = "https://github.com/TheLostLambda/miette" }
1314
nom = "7.1.3"
1415
nom-miette = { path = "../nom-miette" }
1516
rust_decimal = "1.34.3"
@@ -20,7 +21,8 @@ thiserror = "1.0.58"
2021
divan = "0.1.14"
2122
indoc = "2.0.4"
2223
insta = { version = "1.36.1", features = ["filters", "redactions", "ron"] }
23-
miette = { version = "7.2.0", features = ["fancy"] }
24+
miette = { git = "https://github.com/TheLostLambda/miette", features = ["fancy"] }
25+
# miette = { version = "7.2.0", features = ["fancy"] }
2426
once_cell = "1.19.0"
2527
rust_decimal_macros = "1.34.2"
2628

0 commit comments

Comments
 (0)