-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
50 lines (45 loc) · 1.23 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "pez"
version = "0.4.2"
edition = "2024"
description = "A Rust-based plugin manager for fish."
homepage = "https://github.com/tetzng/pez"
readme = "README.md"
repository = "https://github.com/tetzng/pez"
license = "MIT"
keywords = ["fish", "plugin", "manager"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5.60", features = ["derive"] }
console = "0.16.2"
git2 = { version = "0.20.4", features = [ "vendored-libgit2", "vendored-openssl" ] }
serde = "1.0.228"
serde_derive = "1.0.216"
sha2 = "0.10.9"
tabled = "0.20.0"
toml = "1.0.3"
clap_complete = "4.5.66"
regex = "1.12.3"
futures = "0.3.32"
tokio = { version = "1.50.0", features = ["macros", "rt", "rt-multi-thread", "sync"] }
anyhow = "1.0.102"
tempfile = "3.26.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
serde_json = "1.0.149"
walkdir = "2.5.0"
semver = "1.0.23"
url = "2.5.8"
schemars = { version = "0.8.16", optional = true }
[dev-dependencies]
libc = "0.2"
[features]
schema-gen = ["schemars"]
[[bin]]
name = "gen-config-schema"
path = "src/bin/gen_config_schema.rs"
required-features = ["schema-gen"]
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"