mirror of
https://github.com/kristoferssolo/project-finder.git
synced 2025-10-21 19:50:35 +00:00
42 lines
978 B
TOML
42 lines
978 B
TOML
[package]
|
|
name = "project-finder"
|
|
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
|
|
version = "0.1.1"
|
|
edition = "2024"
|
|
description = "Fast project finder for developers"
|
|
repository = "https://github.com/kristoferssolo/project-finder"
|
|
documentation = "https://docs.rs/project-finder"
|
|
homepage = "https://github.com/kristoferssolo/project-finder"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["cli", "string", "text", "utility"]
|
|
categories = ["command-line-utilities"]
|
|
exclude = ["/.github", "/.gitignore", "/tests", "*.png", "*.md"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
futures = "0.3"
|
|
regex = "1.11"
|
|
thiserror = "2.0"
|
|
tokio = { version = "1.44", features = [
|
|
"fs",
|
|
"io-util",
|
|
"macros",
|
|
"process",
|
|
"rt",
|
|
"rt-multi-thread",
|
|
"sync",
|
|
] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
which = "7.0"
|
|
|
|
[dev-dependencies]
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|
|
nursery = "warn"
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|