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

43 lines
971 B
TOML
Raw 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-24 00:27:19 +03:00
version = "0.1.2"
2022-07-23 22:36:22 +03:00
edition = "2018"
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"]
# rust-version = "1.51.0" # The first version of Cargo that supports this field is 1.56.0
2022-07-24 00:13:01 +03:00
[package.metadata]
2022-07-23 22:36:22 +03:00
msrv = "1.51.0"
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-23 23:02:15 +03:00
prim = ["number", "bool"]
2022-07-23 22:36:22 +03:00
number = []
bool = []
vec = []
2022-07-24 02:18:44 +03:00
tuple = []
2022-07-25 00:16:22 +03:00
low-level = []
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"
required-features = ["vec", "number"]
2022-07-24 11:12:22 +03:00
[[example]]
name = "dotenv"
2022-07-25 00:16:22 +03:00
required-features = ["vec", "tuple", "low-level"]