Skip to content

Commit 0449705

Browse files
committed
Fixie uppie
1 parent ca916d1 commit 0449705

File tree

4 files changed

+15
-45
lines changed

4 files changed

+15
-45
lines changed

Cargo.lock

Lines changed: 6 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

complex-indifference/src/count.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@ impl<T: ?Sized> Count<T> {
3131
pub const ONE: Self = Self::new(1);
3232

3333
pub const fn new(count: usize) -> Self {
34-
Self {
35-
count,
36-
_phantom: PhantomData,
37-
}
34+
Self { count, _phantom: PhantomData }
3835
}
3936

4037
pub const fn count(&self) -> usize {
@@ -69,10 +66,7 @@ impl<T: ?Sized> Count<T> {
6966

7067
impl<T: ?Sized> From<usize> for Count<T> {
7168
fn from(count: usize) -> Self {
72-
Self {
73-
count,
74-
_phantom: PhantomData,
75-
}
69+
Self { count, _phantom: PhantomData }
7670
}
7771
}
7872

gedcomfy/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@ ascii = "1.1.0"
1717
complex-indifference = { path = "../complex-indifference" }
1818
derive_more = { version = "2.0.1", features = ["from", "display"] }
1919
dunce = "1.0.5"
20-
encoding_rs = "0.8.34"
20+
encoding_rs = "0.8.35"
2121
errful = { path = "../errful" }
2222
itertools = "0.14.0"
2323
kdl = { version = "4.6.0", optional = true }
2424
memmap2 = "0.9.5"
25-
miette = { version = "7.4.0", features = ["fancy-no-backtrace"] }
25+
miette = { version = "7.6.0", features = ["fancy-no-backtrace"] }
2626
oem_cp = { version = "2.0.0", optional = true }
27-
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
27+
owo-colors = { version = "4.2.1", features = ["supports-colors"] }
2828
paste = "1.0.15"
2929
rstest = { version = "0.25.0", default-features = false }
3030
sophia_api = { version = "0.9.0", optional = true }
3131
sophia_turtle = { version = "0.9.0", optional = true }
3232
thiserror = "2.0.12"
3333
tracing = { version = "0.1", features = ["attributes"] }
3434
vec1 = "1.12.1"
35-
yoke = { version = "0.7.4", features = ["derive"] }
35+
yoke = { version = "0.8.0", features = ["derive"] }
3636

3737

3838
[dev-dependencies]
3939
indoc = "2.0.6"
40-
insta = { version = "1.39.0", features = ["glob"] }
40+
insta = { version = "1.43.1", features = ["glob"] }

gedcomfy/tests/snapshots/tests__kdl_error@ascii_specified_malformed.ged.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ gedcomfy::error
3434
Advice: gedcom::possible_encodings
3535
3636
│ ☞ the invalid data appears to be valid in other encodings:
37-
│ │ → [1mHÖÖT[0m (using Windows-1252)
38-
│ │ → [1mHÖÖT[0m (using UTF-8)
37+
│ │ → HÖÖT (using Windows-1252)
38+
│ │ → HÖÖT (using UTF-8)
3939
help: encoding can be chosen explicitly using the `--force-encoding`
4040
option
4141

0 commit comments

Comments
 (0)