Skip to content
Snippets Groups Projects
Cargo.toml 794 B
Newer Older
[package]
name = "tiled"
Alejandro Perea's avatar
Alejandro Perea committed
version = "0.10.2"
description = "A rust crate for loading maps created by the Tiled editor"
categories = ["game-development"]
keywords = ["gamedev", "tiled", "tmx", "map"]
repository = "https://github.com/mapeditor/rs-tiled"
Matthew Hall's avatar
Matthew Hall committed
readme = "README.md"
license = "MIT"
authors = ["Matthew Hall <matthew@quickbeam.me.uk>"]
TatriX's avatar
TatriX committed
edition = "2018"
include = ["src/**/*.rs", "README.md", "LICENSE", "CHANGELOG.md"]
[lib]
name = "tiled"
path = "src/lib.rs"

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

[[example]]
name = "sfml"
path = "examples/sfml/main.rs"

Matthew Hall's avatar
Matthew Hall committed
[dependencies]
base64 = "0.13.0"
xml-rs = "0.8.4"
zstd = { version = "0.11.0", optional = true }

[dev-dependencies.sfml]
version = "0.16"
features = ["graphics"]