-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
39 lines (34 loc) · 832 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
[package]
name = "rusty_spine"
version = "0.8.0"
edition = "2021"
description = "Spine runtime for Rust (and wasm!) transpiled from the official C Runtime."
homepage = "https://github.com/jabuwu/rusty_spine"
repository = "https://github.com/jabuwu/rusty_spine"
readme = "README.md"
license-file = "LICENSE"
exclude = [
"/.github",
"/assets",
"/ci",
"/examples",
]
[dependencies]
libc = { version = "0.2", optional = true }
mint = { version = "0.5", optional = true }
[dev-dependencies]
miniquad = "0.3.16"
image = { version = "0.24", default-features = false, features = [ "png", "webp", "jpeg" ] }
glam = "0.23"
cosmic-text = "0.9"
[profile.dev.package."*"]
opt-level = 3
[features]
default = [ "draw_functions", "mint" ]
draw_functions = []
[workspace]
resolver = "2"
members = [
"transpiler",
"ci"
]