This repository has been archived on 2022-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
itconfig/enve_mod/Cargo.toml

30 lines
814 B
TOML
Raw Normal View History

2020-03-12 23:20:34 +03:00
[package]
2022-07-22 15:05:10 +03:00
name = "enve_mod"
2021-06-22 10:22:29 +03:00
version = "1.1.1"
2020-03-12 23:20:34 +03:00
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
description = "Easy build a configs from environment variables and use it in globally."
categories = ["config", "web-programming"]
keywords = ["config", "env", "configuration", "environment", "macro"]
edition = "2018"
license = "MIT"
2022-07-22 15:05:10 +03:00
repository = "https://github.com/pleshevskiy/enve"
homepage = "https://github.com/pleshevskiy/enve"
documentation = "https://docs.rs/enve"
2021-04-22 23:54:17 +03:00
readme = "../README.md"
2020-03-12 23:20:34 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
syn = "1.0.60"
quote = "1.0.9"
proc-macro2 = "1.0.24"
2020-03-12 23:20:34 +03:00
[dev-dependencies]
2022-07-22 15:05:10 +03:00
enve = { path = ".." }
2020-03-12 23:20:34 +03:00
lazy_static = "1.4.0"
[badges]
2022-07-22 14:10:44 +03:00
maintenance = { status = "actively-developed" }