Skip to content

Commit

Permalink
fix: Added MSBT to from_str
Browse files Browse the repository at this point in the history
  • Loading branch information
Le0X8 committed Nov 24, 2024
1 parent 7c7c441 commit 13c76f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'acridotheres'
version = '0.6.0'
version = '0.6.1'
edition = '2021'
description = "Acridotheres Core Library"
license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions src/formats/auto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pub fn from_str(s: &str) -> Option<Format> {
match s {
"zip" => Some(Zip),
"umsbt" => Some(Umsbt),
"msbt" => Some(Msbt),
_ => None,
}
}

0 comments on commit 13c76f9

Please sign in to comment.