Skip to content

Commit

Permalink
Prepare for cargo publish
Browse files Browse the repository at this point in the history
Tha name of `torch` is used on crates.io https://crates.io/crates/torch,
so, I change package name to `torch-cmd`.
  • Loading branch information
toshimaru committed Jan 14, 2024
1 parent 38bde0f commit 8e9a998
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 13 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
[package]
name = "torch"
name = "torch-cmd"
version = "0.1.0"
edition = "2021"
authors = ["Toshimaru <me@toshimaru.net>"]
license = "MIT"
description = "mkdir + touch command"
readme = "README.md"
homepage = "https://github.com/toshimaru/torch"
repository = "https://github.com/toshimaru/torch"
keywords = ["cli", "mkdir", "touch"]
categories = ["command-line-utilities"]

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

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 8e9a998

Please sign in to comment.