1 Star 1 Fork 0

DarrenFang/command-line-todo-list-rust

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Cargo.toml 587 Bytes
一键复制 编辑 原始数据 按行查看 历史
Snow 提交于 2021-09-01 23:18 . modify name
[package]
name = "Todo"
version = "0.1.0"
authors = ["Snow"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
home = "0.5"
structopt = "0.3"
rand = "0.8.4"
serde_json = "1.0" # Add serde_json.
[dependencies.serde] # Add serde in its own section.
version = "1.0"
features = ["derive"] # We'll need the derive feature.
[dependencies.chrono]
version = "0.4"
features = ["serde"] # We're also going to need the serde feature for the chrono crate, so we can serialize the DateTime field.
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/darren94fang/command-line-todo-list-rust.git
git@gitee.com:darren94fang/command-line-todo-list-rust.git
darren94fang
command-line-todo-list-rust
command-line-todo-list-rust
master

搜索帮助