加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Cargo.toml 695 Bytes
一键复制 编辑 原始数据 按行查看 历史
cuppar 提交于 2023-09-05 17:49 . s
[package]
name = "rtd-tutorial"
version = "0.1.23"
edition = "2021"
license = "MIT"
description = "Learn Rust by 500 lines code, build a Rust ToDo cli tool."
homepage = "https://github.com/cuppar/rtd"
documentation = "https://github.com/cuppar/rtd/wiki"
repository = "https://github.com/cuppar/rtd"
readme = "readme.md"
keywords = [
"tutorial",
"guide",
"todo",
"learning-by-doing",
"step-by-step-guide",
]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.26"
clap = { version = "4.3.19", features = ["derive"] }
[[bin]]
name = "rtd"
path = "src/main.rs"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化