-
Notifications
You must be signed in to change notification settings - Fork 102
/
Cargo.toml
45 lines (37 loc) · 943 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
38
39
40
41
42
43
44
45
[package]
name = "tiled"
version = "0.13.0"
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 <[email protected]>"]
edition = "2018"
include = ["src/**/*.rs", "README.md", "LICENSE", "CHANGELOG.md"]
[features]
default = ["zstd"]
wasm = ["zstd/wasm"]
[lib]
name = "tiled"
path = "src/lib.rs"
[[example]]
name = "example"
path = "examples/main.rs"
[[example]]
name = "sfml"
path = "examples/sfml/main.rs"
[[example]]
name = "ggez"
path = "examples/ggez/main.rs"
[dependencies]
base64 = "0.22.1"
xml-rs = "0.8.4"
zstd = { version = "0.13.1", optional = true, default-features = false }
flate2 = "1.0.28"
[dev-dependencies.sfml]
version = "0.21.0"
features = ["graphics"]
[dev-dependencies.ggez]
version = "0.9.3"