-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
23 lines (20 loc) · 883 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
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "cargo-local-install"
version = "0.0.0-git"
authors = ["MaulingMonkey <git@maulingmonkey.com>"]
repository = "https://github.com/MaulingMonkey/cargo-local-install.git"
documentation = "https://docs.rs/cargo-local-install/"
edition = "2018"
license = "Apache-2.0 OR MIT"
readme = "Readme.md"
description = "Wraps `cargo install` for better local, non-conflicting installation"
keywords = ["cargo", "install"]
categories = ["development-tools::cargo-plugins"]
exclude = [".cargo", ".vscode", "scripts", "target", "test"]
[features]
default = ["manifest"]
manifest = ["serde", "toml"]
[dependencies]
serde = { version = "1", optional = true }
toml = { version = "0.5", optional = true }