[package] name = "dynfmt" version = "0.1.5" authors = ["Jan Michael Auer "] edition = "2018" license = "MIT" readme = "README.md" repository = "https://github.com/jan-auer/dynfmt" homepage = "https://github.com/jan-auer/dynfmt" documentation = "https://docs.rs/dynfmt" description = """ A crate for formatting strings dynamically. """ [package.metadata.docs.rs] all-features = true [dependencies] erased-serde = "0.3.6" lazy_static = { version = "1.2.0", optional = true } regex = { version = "1.1.0", optional = true } serde = "1.0.84" serde_json = { version = "1.0.36", optional = true } thiserror = "1.0" [features] default = ["json"] json = ["serde_json"] python = ["regex", "lazy_static"] curly = ["regex", "lazy_static"]