-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 842 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 842 Bytes
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
[package]
name = "truegrf"
version = "0.0.0-git"
authors = ["Patric Stout <truebrain@openttd.org>"]
license = "GPL-2.0-only"
description = "TrueGRF YAML to GRF compiler"
homepage = "https://github.com/TrueGRF/TrueGRF-rs"
repository = "https://github.com/TrueGRF/TrueGRF-rs"
readme = "README.md"
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
base64 = "0.13"
bitflags = "1.3"
clap = "3.1"
console_error_panic_hook = { version = "0.1", optional = true }
hex = "0.4.3"
image = { version = "0.24", default-features = false, features = ["png"] }
js-sys = "0.3"
petgraph = "0.6.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
[profile.release]
opt-level = "s"