update toml for publish

This commit is contained in:
Rowan 2024-09-28 00:54:06 -05:00
parent 9432a39095
commit eb80b0c239
2 changed files with 9 additions and 0 deletions

View file

@ -1,6 +1,14 @@
[package]
name = "swaprs"
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"
[dependencies]

View file

@ -45,5 +45,6 @@ fn main() -> io::Result<()> {
rename_or_copy(&first, &temp)?;
rename_or_copy(&second, &first)?;
rename_or_copy(&temp, &second)?;
Ok(())
}