estring/Cargo.toml

36 lines
820 B
TOML
Raw Permalink Normal View History

2022-07-23 22:36:22 +03:00
[package]
name = "estring"
description = "A simple way to parse a string using type annotations"
2022-07-28 14:36:45 +03:00
version = "0.3.0"
2022-07-25 13:31:13 +03:00
edition = "2021"
2022-07-23 22:36:22 +03:00
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
readme = "README.md"
2022-07-23 23:02:15 +03:00
repository = "https://github.com/pleshevskiy/estring"
2022-07-23 22:36:22 +03:00
license = "MIT"
keywords = ["parsing", "type", "annotations", "customizable"]
categories = ["data-structures", "parsing"]
2022-07-25 13:31:13 +03:00
rust-version = "1.59.0"
2022-07-23 22:36:22 +03:00
2022-07-24 00:13:01 +03:00
[package.metadata.docs.rs]
all-features = true
2022-07-23 22:36:22 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
2022-07-25 00:16:22 +03:00
low-level = []
2022-07-25 22:48:17 +03:00
aggs = []
structs = []
2022-07-23 22:36:22 +03:00
[dependencies]
[badges]
maintenance = { status = "actively-developed" }
2022-07-24 02:23:19 +03:00
[[example]]
name = "calc"
2022-07-28 13:09:09 +03:00
required-features = ["structs", "aggs"]
2022-07-24 11:12:22 +03:00
[[example]]
name = "dotenv"
2022-07-25 22:48:17 +03:00
required-features = ["structs", "low-level"]