-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
32 lines (29 loc) · 820 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
[package]
name = "cargo-local-registry"
version = "0.2.7"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["cargo-subcommand"]
repository = "https://github.com/dhovart/cargo-local-registry"
homepage = "https://github.com/dhovart/cargo-local-registry"
description = """
A Cargo subcommand for managing local registries.
"""
edition = "2021"
[dependencies]
anyhow = "1.0.47"
cargo = "0.81.0"
cargo-platform = "0.1.0"
clap = { version = "4.5.11", features = ["derive"] }
env_logger = "0.11.0"
flate2 = "1.0.22"
openssl = { version = '0.10.41', optional = true }
serde = { version = "1.0.104", features = ['derive'] }
serde_json = "1.0.46"
tar = "0.4.26"
url = "2.1.1"
[dev-dependencies]
tempfile = "3.1.0"
[features]
vendored-openssl = ['openssl/vendored']