aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 23b298ef58bb677db2322c89b425b09089adaaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "projectr"
version = "0.3.0"
edition = "2021"
description = "A contextual, MRU sorted, project finder."
authors = ["Toby Vincent <tobyv13@gmail.com>"]
homepage = "https://git.sr.ht/~tobyvin/projectr"
repository = "https://git.sr.ht/~tobyvin/projectr"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.66"
clap = { version = "4.0.18", features = ["derive", "env"] }
git2 = { version = "0.15.0", default-features = false, optional = true, features = [
    "vendored-libgit2",
] }
ignore = "0.4.18"
tracing = { version = "0.1.37", features = ["attributes"] }
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }

[features]
default = ["git"]
git = ["dep:git2"]