update toml for publish
This commit is contained in:
parent
9432a39095
commit
eb80b0c239
|
@ -1,6 +1,14 @@
|
||||||
[package]
|
[package]
|
||||||
name = "swaprs"
|
name = "swaprs"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
authors = ["Rowan <rowan@kitsu.cafe>"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
description = "A file swap utility"
|
||||||
|
readme = "README.md"
|
||||||
|
homepage = "https://fem.mint.lgbt/kitsunecafe/swaprs"
|
||||||
|
repository = "https://fem.mint.lgbt/kitsunecafe/swaprs"
|
||||||
|
keywords = ["cli"]
|
||||||
|
categories = ["command-line-utilities"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
@ -45,5 +45,6 @@ fn main() -> io::Result<()> {
|
||||||
rename_or_copy(&first, &temp)?;
|
rename_or_copy(&first, &temp)?;
|
||||||
rename_or_copy(&second, &first)?;
|
rename_or_copy(&second, &first)?;
|
||||||
rename_or_copy(&temp, &second)?;
|
rename_or_copy(&temp, &second)?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue