Skip to content

Commit

Permalink
chore: Update to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
Le0X8 committed Jul 14, 2024
1 parent 4a5bdde commit ad02987
Show file tree
Hide file tree
Showing 3 changed files with 231 additions and 35 deletions.
252 changes: 223 additions & 29 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = 'acridotheres_cli'
version = '0.1.0'
edition = '2021'
name = "acridotheres_cli"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
acridotheres_core = { git = 'https://github.com/acridotheres/core.git', branch = 'main' }
acridotheres_core = { git = "https://github.com/acridotheres/core.git", branch = "main" }
clap = { version = "4.5.7", features = ["derive"] }
6 changes: 4 additions & 2 deletions src/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ pub fn get_version() {
}

pub fn zip_metadata(path: &str) {
let mut file = corelib::FileReader::new(path);

println!(
"metadata {}",
corelib::formats::zip::parser::metadata(path).file_count
"metadata {:?}",
corelib::formats::zip::parser::metadata(&mut file)
);
}

0 comments on commit ad02987

Please sign in to comment.