projectdetect 0.1.0

Detect what kind of project a directory is (Go, Node, Rust, Xcode, …) by canonical indicator files, with recursive discovery, file→project resolution, and custom YAML/CEL types.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "projectdetect"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Detect what kind of project a directory is (Go, Node, Rust, Xcode, …) by canonical indicator files, with recursive discovery, file→project resolution, and custom YAML/CEL types."
readme = "README.md"
keywords = [
    "project",
    "detection",
    "monorepo",
    "filesystem",
    "polyglot",
]
categories = [
    "development-tools",
    "filesystem",
]
license = "MIT"
repository = "https://github.com/richardwooding/projectdetect-rs"

[package.metadata.docs.rs]
all-features = true

[features]
cel = ["dep:cel"]
default = []

[lib]
name = "projectdetect"
path = "src/lib.rs"

[[example]]
name = "detect"
path = "examples/detect.rs"

[[test]]
name = "config"
path = "tests/config.rs"

[[test]]
name = "detect"
path = "tests/detect.rs"

[[test]]
name = "find"
path = "tests/find.rs"

[[test]]
name = "resolver"
path = "tests/resolver.rs"

[dependencies.cel]
version = "0.13"
optional = true

[dependencies.dirs]
version = "6"

[dependencies.glob]
version = "0.3"

[dependencies.ignore]
version = "0.4"

[dependencies.once_cell]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_norway]
version = "0.9"

[dependencies.thiserror]
version = "2"

[dev-dependencies.tempfile]
version = "3"