Skip to content

Commit

Permalink
Cargo.toml: rename utility name as rqcow2
Browse files Browse the repository at this point in the history
qcow2 is easy to confuse people with other qcow2 utilities, so
rename it.

Signed-off-by: Ming Lei <tom.leiming@gmail.com>
  • Loading branch information
ming1 committed Sep 24, 2024
1 parent 78a1a63 commit dc804b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = [ "asynchronous", "filesystem" ]
publish = true

[[bin]]
name = "qcow2"
name = "rqcow2"
path = "src/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions tests/qcow2_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ mod integretion {
let rt = Runtime::new().unwrap();
rt.block_on(async move {
let exe_path = if cfg!(debug_assertions) {
format!("target/debug/qcow2")
format!("target/debug/rqcow2")
} else {
format!("target/release/qcow2")
format!("target/release/rqcow2")
};
__test_qcow2_utility_convert(exe_path).await;
});
Expand Down

0 comments on commit dc804b5

Please sign in to comment.