vnetod/Cargo.toml

21 lines
812 B
TOML
Raw Permalink Normal View History

2022-07-29 16:42:05 +03:00
[package]
name = "vnetod"
description = "Are you still switching sections in your dotenv file manually? Try this dotenv section switcher"
2022-11-12 16:56:08 +03:00
version = "0.4.0"
2022-07-29 16:42:05 +03:00
edition = "2021"
license = "GPL-3.0+"
2022-08-02 15:13:50 +03:00
homepage = "https://github.com/pleshevskiy/vnetod/discussions"
2022-07-29 16:42:05 +03:00
repository = "https://git.pleshevski.ru/pleshevskiy/vnetod.git"
keywords = ["env", "dotenv", "switcher", "change"]
categories = ["command-line-interface", "config", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-11-07 23:41:52 +03:00
clap = { version = "3.2.15", default-features = false, features = ["std", "env", "derive"] }
2022-11-12 16:25:35 +03:00
atty = { version = "0.2.14", optional = true }
2022-11-10 00:19:18 +03:00
termcolor = { version = "1.1.3", optional = true }
[features]
2022-11-12 16:25:35 +03:00
color = ["clap/color", "dep:atty", "dep:termcolor"]