-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (31 loc) · 815 Bytes
/
Cargo.toml
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
[package]
name = "cargo-odeps"
version = "0.2.0"
authors = ["[email protected]"]
categories = ["development-tools::cargo-plugins"]
description = "Easy manage rust crate deps by `cargo odeps`."
documentation = "https://github.com/light4/cargo-odeps"
keywords = ["cargo", "odeps", "subcommand"]
license = "Apache-2.0/MIT"
repository = "https://github.com/light4/cargo-odeps"
edition = "2021"
[dependencies]
clap = { version = "4.4", default-features = false, features = [
"std",
"help",
"usage",
"derive",
"error-context",
] }
color-eyre = "0.6"
json = "0.12"
semver = "1.0"
std = { version = "0.16", package = "eyra" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ureq = "2.8"
xshell = "0.2"
[profile.release]
lto = "thin"
codegen-units = 4
strip = "debuginfo"