This repository has been archived on 2023-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
toolkit/Cargo.toml
2023-01-12 07:32:05 +01:00

36 lines
935 B
TOML

[package]
name = "toolkit"
description = "Toolkit is an opinionated toolkit complementing a personal development workflow. Many of the commands are quite verbose, and well suited for adding to your shell toolbelt"
version = "0.1.14"
edition = "2021"
license-file = "LICENSE"
authors = ["Kasper J. Hermansen contact@kjuulh.io"]
readme = "README.md"
[workspace]
members = [
"crates/tldr",
"crates/util",
"crates/sourcegraph",
"crates/github",
"crates/stats",
]
[workspace.dependencies]
clap = { version = "4.0.32", 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]
github = { path = "crates/github" }
tldr = { path = "crates/tldr" }
sourcegraph = { path = "crates/sourcegraph" }
util = { path = "crates/util" }
stats = { path = "crates/stats" }
clap.workspace = true
eyre.workspace = true