diff --git a/Cargo.lock b/Cargo.lock index 67a22975..9f273fd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -68,11 +68,10 @@ dependencies = [ [[package]] name = "axolotlsay" -version = "0.2.27" +version = "0.2.28" dependencies = [ "assert_cmd", "clap", - "cue", "unicode-width", ] @@ -149,25 +148,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" -[[package]] -name = "cue" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa8bcf4c6736cccc4eaeb108973e6457cb5c4d6393e29cdf61158cee51c0d4af" -dependencies = [ - "cue-sys", - "libc", -] - -[[package]] -name = "cue-sys" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eb6bf9ed3f73d97b215e5d9c76293095b1fccb1ffd68a8926a8103d11f11440" -dependencies = [ - "libc", -] - [[package]] name = "difflib" version = "0.4.0" diff --git a/Cargo.toml b/Cargo.toml index 9818b884..3b948a1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "axolotlsay" description = "💬 a CLI for learning to distribute CLIs in rust" -version = "0.2.27" +version = "0.2.28" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/mistydemeo/cargodisttest" @@ -9,7 +9,6 @@ repository = "https://github.com/mistydemeo/cargodisttest" [dependencies] clap = { version = "4.1.4", features = ["derive"] } unicode-width = "0.1.10" -cue = "2.0.0" [dev-dependencies] assert_cmd = "2.0.8" @@ -22,13 +21,13 @@ lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) -cargo-dist-version = "0.3.0-github-use-linkage-data" +cargo-dist-version = "0.3.0-github-linux-musl" # CI backends to support ci = ["github"] # The installers to generate for each app installers = ["shell", "homebrew"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin"] +targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-musl"] # The archive format to use for windows builds (defaults .zip) windows-archive = ".tar.gz" # The archive format to use for non-windows builds (defaults .tar.xz) diff --git a/src/main.rs b/src/main.rs index 1f9d357a..88853863 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,8 +2,6 @@ use clap::Parser; use unicode_width::UnicodeWidthStr; -use cue; - #[derive(Parser, Debug)] #[command(author, version, about, long_about = None)] struct Args { @@ -11,14 +9,6 @@ struct Args { } fn main() { - cue::cd::CD::parse( - r#"FILE "basic_image.bin" BINARY - TRACK 01 MODE1/2352 - INDEX 01 00:00:00"# - .to_owned(), - ) - .unwrap(); - let args = Args::parse(); let msg = &args.msg; let count = UnicodeWidthStr::width(args.msg.as_str());