bmfont_rs 0.4.0

Load/ save/ manipulate BMFont files
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "bmfont_rs"
version = "0.4.0"
authors = ["Vin Singh Ghataore <theshampoofactory@gmail.com>"]
build = false
exclude = ["data/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Load/ save/ manipulate BMFont files
"""
homepage = "https://github.com/shampoofactory/bmfont_rs"
documentation = "https://docs.rs/bmfont_rs"
readme = "README.md"
keywords = [
    "bmfont",
    "font",
    "bitmap",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/shampoofactory/bmfont_rs"

[features]
json = [
    "serde_json",
    "serde",
]
xml = ["roxmltree"]

[lib]
name = "bmfont_rs"
path = "src/lib.rs"

[[example]]
name = "binary"
path = "examples/binary.rs"

[[example]]
name = "binary_to_text"
path = "examples/binary_to_text.rs"

[[example]]
name = "json"
path = "examples/json.rs"

[[example]]
name = "render"
path = "examples/render.rs"

[[example]]
name = "text"
path = "examples/text.rs"

[[example]]
name = "xml"
path = "examples/xml.rs"

[dependencies.roxmltree]
version = "0.20.0"
optional = true

[dependencies.serde]
version = "1.0.217"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0.138"
optional = true

[dev-dependencies.image]
version = "0.23.14"

[profile.test]
opt-level = 3