Skip to content

Commit 64c1ab7

Browse files
committed
bump xmodits-lib
1 parent 6cacebb commit 64c1ab7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "xmodits"
33
authors = ["B0ney - https://github.com/B0ney"]
44
description = "XMODITS command line application"
5-
version = "0.11.3"
5+
version = "0.11.4"
66
edition = "2021"
77
license = "LGPLv3"
88
repository = "https://github.com/B0ney/xmodits-cli"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies.xmodits-lib]
1212
git = "https://github.com/B0ney/xmodits-lib.git"
13-
rev = "ce5d922"
13+
rev = "1773dfb"
1414

1515
[dependencies]
1616
clap = { version = "4", features = ["derive", "cargo", "wrap_help"] }

src/api.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
use crate::Cli;
22
use std::path::{Path, PathBuf};
33

4-
use xmodits_lib::common::info::Info;
4+
use xmodits_lib::info::Info;
55
use xmodits_lib::{
6-
common::extract, exporter::AudioFormat, interface::ripper::Ripper, SampleNamer,
7-
SampleNamerTrait,
6+
export::{Format, Ripper, SampleNamer, SampleNamerTrait},
7+
extract,
88
};
99

1010
pub fn build_namer(cli: &Cli) -> Box<dyn SampleNamerTrait> {
@@ -103,7 +103,7 @@ pub fn rip(cli: Cli, destination: PathBuf) {
103103
println!("Done!");
104104
}
105105

106-
fn get_format(format: &str) -> AudioFormat {
106+
fn get_format(format: &str) -> Format {
107107
format.parse().unwrap_or_default()
108108
}
109109

0 commit comments

Comments
 (0)