Skip to content

Commit 13c76f9

Browse files
committed
fix: Added MSBT to from_str
1 parent 7c7c441 commit 13c76f9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'acridotheres'
3-
version = '0.6.0'
3+
version = '0.6.1'
44
edition = '2021'
55
description = "Acridotheres Core Library"
66
license = "MIT"

src/formats/auto.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ pub fn from_str(s: &str) -> Option<Format> {
2525
match s {
2626
"zip" => Some(Zip),
2727
"umsbt" => Some(Umsbt),
28+
"msbt" => Some(Msbt),
2829
_ => None,
2930
}
3031
}

0 commit comments

Comments
 (0)