fluent-syntax 0.9.3

Parser/Serializer tools for Fluent Syntax.
Documentation
[package]
name = "fluent-syntax"
description = """
Parser/Serializer tools for Fluent Syntax. 
"""
version = "0.9.3"
edition = "2018"
authors = [
    "Zibi Braniecki <gandalf@mozilla.com>",
    "Staś Małolepszy <stas@mozilla.com>"
]
homepage = "http://www.projectfluent.org"
license = "Apache-2.0/MIT"
repository = "https://github.com/projectfluent/fluent-rs"
readme = "README.md"
keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
categories = ["localization", "internationalization"]

[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }

[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
glob = "0.3"
assert-json-diff = "1.0"
criterion = "0.3"

[features]
default = []
json = ["serde", "serde_json"]

[[bench]]
name = "parser"
harness = false

[[bin]]
name = "parser"
path = "src/bin/parser.rs"

[[test]]
name = "parser_fixtures"
path = "tests/parser_fixtures.rs"
required-features = ["json"]