-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Publish the project to Cargo (#201)
* feat: Publish the project to Cargo * doc: Add instructions on installing the project using Cargo
- Loading branch information
1 parent
cf224c8
commit 2633d39
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
[package] | ||
name = "katharsis" | ||
authors = ["Shigure Kurosaki <[email protected]>"] | ||
version = "1.0.0-canary.20" | ||
edition = "2021" | ||
license = "MIT" | ||
categories = ["command-line-utilities"] | ||
homepage = "https://github.com/kurosakishigure/katharsis" | ||
repository = "https://github.com/kurosakishigure/katharsis" | ||
description = "CLI tool for generating RSS feeds." | ||
include = ["/src", "README.md", "LICENSE", "Cargo.toml", "Cargo.lock"] | ||
|
||
[lints.clippy] | ||
pedantic = "warn" | ||
|
||
[[bin]] | ||
name = "katharsis" | ||
|
||
[dependencies] | ||
anyhow = "1.0.95" | ||
chrono = "0.4.39" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters