[[bench]]
harness = false
name = "format_spec"
path = "benches/format_spec.rs"
[[bench]]
harness = false
name = "formatting"
path = "benches/formatting.rs"
[[bench]]
harness = false
name = "parsing"
path = "benches/parsing.rs"
[dependencies.lazy_static]
version = "1.4"
[dependencies.regex]
version = "1.10"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.proptest]
version = "1.4"
[[example]]
name = "shuffle"
path = "examples/shuffle.rs"
[lib]
name = "gullwing"
path = "src/lib.rs"
[package]
authors = ["Fredrik Olsson <freol@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing", "text-processing"]
description = "Runtime formatting and parsing with Python's Format Specification Mini-Language"
documentation = "https://docs.rs/gullwing"
edition = "2021"
keywords = ["format", "parse", "string", "formatting", "parsing"]
license = "Apache-2.0"
name = "gullwing"
readme = "README.md"
repository = "https://github.com/freol35241/gullwing"
rust-version = "1.70"
version = "1.0.0-rc.1"
[[test]]
name = "error_cases"
path = "tests/error_cases.rs"
[[test]]
name = "format_spec"
path = "tests/format_spec.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "shuffle_integration"
path = "tests/shuffle_integration.rs"