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

36 lines
934 B
TOML
Raw Normal View History

2022-12-17 21:51:41 +01:00
[package]
name = "toolkit"
2022-12-18 20:14:28 +01:00
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"
2022-12-18 20:18:08 +01:00
version = "0.1.1"
2022-12-17 21:51:41 +01:00
edition = "2021"
2022-12-18 20:14:28 +01:00
license-file = "LICENSE"
authors = ["Kasper J. Hermansen contact@kjuulh.io"]
readme = "README.md"
2022-12-17 21:51:41 +01:00
[workspace]
2022-12-18 14:47:28 +01:00
members = [
"crates/tldr",
"crates/util",
"crates/sourcegraph",
"crates/github",
"crates/stats",
]
2022-12-17 21:51:41 +01:00
[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]
2022-12-17 23:27:41 +01:00
github = { path = "crates/github" }
2022-12-17 21:51:41 +01:00
tldr = { path = "crates/tldr" }
2022-12-17 22:56:07 +01:00
sourcegraph = { path = "crates/sourcegraph" }
2022-12-17 21:51:41 +01:00
util = { path = "crates/util" }
2022-12-18 14:47:28 +01:00
stats = { path = "crates/stats" }
2022-12-17 21:51:41 +01:00
clap.workspace = true
eyre.workspace = true