add tldr and base

This commit is contained in:
2022-12-17 21:51:41 +01:00
commit 6dc747f8b0
13 changed files with 764 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "toolkit"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["crates/tldr", "crates/util"]
[workspace.dependencies]
clap = { version = "4.0.29", features = ["cargo"] }
eyre = "0.6.8"
dirs = "4.0.0"
walkdir = "2.3.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tldr = { path = "crates/tldr" }
util = { path = "crates/util" }
clap.workspace = true
eyre.workspace = true