-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 1.08 KB
/
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
34
35
36
[package]
name = "cargo-csm"
version = "0.1.0"
edition = "2021"
authors = ["Jaye Lee <[email protected]>"]
license = "MIT"
description = "A Cargo subcommand for management crates.io sources"
readme = "README.md"
homepage = "https://github.com/makeco/crates.io-management"
repository = "https://github.com/makeco/crates.io-management"
keywords = ["crates.io", "cargo", "crates.io-index"]
categories = ["command-line-utilities"]
default-run = "cargo-csm"
build = "build.rs"
[[bin]]
name = "cargo-csm"
path = "src/bin/cargo-csm.rs"
doctest = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.58"
clap = { version = "3.2.12", features = ["derive", "env"] }
env_logger = { version = "0.9.0"}
lazy_static = "1.4.0"
log = "0.4.17"
serde = "1.0.139"
serde_derive = { version = "1.0.139" }
toml = "0.5.9"
tokio = { version = "1.20.0", features=["macros", "fs", "rt-multi-thread"] }
dialoguer = "0.10.2"
console = "0.15.1"
[build-dependencies]
vergen = { version = "7.2.1", default-features = false, features = ["build", "git"] }