-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (38 loc) · 1.41 KB
/
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
[package]
name = "riichi_hand"
version = "0.6.3"
authors = ["Mateusz Maćkowski <[email protected]>"]
edition = "2018"
license = "MIT"
description = "A collection of utilities for working with Riichi Mahjong player hands"
homepage = "https://github.com/m4tx/riichi-hand-rs"
repository = "https://github.com/m4tx/riichi-hand-rs"
documentation = "https://docs.rs/riichi_hand"
readme = "README.md"
categories = ["game-engines", "parser-implementations", "rendering"]
keywords = ["riichi", "mahjong", "renderer"]
exclude = [
".github",
".gitignore",
"examples/"
]
rust-version = "1.65.0"
[dependencies]
image = { version = "0.25.1", default-features = false, optional = true }
lazy_static = { version = "1.4.0", optional = true }
num-traits = "0.2.18"
[build-dependencies]
image = { version = "0.25.1", default-features = false, optional = true }
rayon = { version = "1.10.0", optional = true }
resvg = { version = "0.41.0", optional = true }
tiny-skia = { version = "0.11.4", optional = true }
usvg = { version = "0.41.0", optional = true }
[dev-dependencies]
csv = "1.3.0"
serde = { version = "1.0.197", features = ["derive"] }
num-bigint = "0.4.4"
[features]
default = ["raster-renderer", "fluffy-stuff-tile-sets", "martin-persson-tile-sets"]
raster-renderer = ["image"]
fluffy-stuff-tile-sets = ["image/png", "rayon", "resvg", "tiny-skia", "usvg", "lazy_static"]
martin-persson-tile-sets = ["image/png", "lazy_static"]