swaprs/Cargo.toml

22 lines
485 B
TOML
Raw Normal View History

2024-09-28 04:53:28 +00:00
[package]
name = "swaprs"
2024-09-28 06:03:32 +00:00
version = "0.1.1"
2024-09-28 05:54:06 +00:00
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"]
2024-09-28 04:53:28 +00:00
edition = "2021"
[dependencies]
clap = { version = "4.5.18", features = ["derive"] }
rand = "0.8.5"
2024-09-28 06:01:07 +00:00
[[bin]]
name = "swap"
2024-09-28 06:02:36 +00:00
path = "src/main.rs"
2024-09-28 06:01:07 +00:00