Skip to content

Commit e850296

Browse files
committed
bump semver
1 parent dd83f92 commit e850296

File tree

5 files changed

+5
-78
lines changed

5 files changed

+5
-78
lines changed

Cargo.lock

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

kidfile-explorer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kidfile-explorer"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55

66
[dependencies]

kidfile/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kidfile"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55

66
[dependencies]

kidfile/src/data_formats/lzssbe.rs

Lines changed: 0 additions & 71 deletions
This file was deleted.

kidfile/src/data_formats/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ use super::Decoder;
33

44
mod lzss;
55
mod cps;
6-
mod lzssbe;
76

87
pub const DATA_DECODERS: LazyLock<Vec<Decoder<Box<[u8]>>>> = LazyLock::new(|| [
98
lzss::ENTRY_LZSS,
10-
cps::ENTRY_CPS,
11-
lzssbe::ENTRY_LZSSBE
9+
cps::ENTRY_CPS
1210
].into());

0 commit comments

Comments
 (0)