forked from mapeditor/rs-tiled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 796 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "tiled"
version = "0.10.3"
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"
readme = "README.md"
license = "MIT"
authors = ["Matthew Hall <matthew@quickbeam.me.uk>"]
edition = "2018"
include = ["src/**/*.rs", "README.md", "LICENSE", "CHANGELOG.md"]
[features]
default = ["zstd"]
[lib]
name = "tiled"
path = "src/lib.rs"
[[example]]
name = "example"
path = "examples/main.rs"
[[example]]
name = "sfml"
path = "examples/sfml/main.rs"
[dependencies]
base64 = "0.21.0"
xml-rs = "0.8.4"
libflate = "1.1.2"
zstd = { version = "0.12.0", optional = true }
[dev-dependencies.sfml]
version = "0.20.0"
features = ["graphics"]