-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
82 lines (69 loc) · 1.55 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "cat_engine"
version = "1.0.0-alpha7"
authors = ["Clomance <Hisoskar@gmail.com>"]
edition = "2021"
homepage = "https://github.com/Clomance/CatEngine"
repository = "https://github.com/Clomance/CatEngine"
description = "A 2D graphics engine with audio output support"
documentation = "https://docs.rs/cat_engine/"
license = "MIT"
readme = "README.md"
keywords = [
"windows",
"graphics",
"opengl",
"audio",
"playback",
]
exclude = [
"resources",
"LICENSE",
".gitignore",
"logo_400x400.png",
"logo.png",
"examples",
"book",
"RELEASE-NOTES.MD"
]
[package.metadata.docs.rs]
features = [
"default",
"set_cursor_event"
]
default-target = "x86_64-pc-windows-msvc"
[features]
default = [
"simple_graphics",
"texture_graphics",
"text_graphics",
# Windows
"wnd_proc_catch_panic",
]
### Windows
set_cursor_event = ["cat_engine_basement/set_cursor_event"]
wnd_proc_catch_panic = ["cat_engine_basement/wnd_proc_catch_panic"]
### AUDIO
audio = ["cat_audio"]
extended_audio = ["cat_audio/extended"]
raw_audio = ["cat_audio/raw"]
### GRAPHICS
# plain objects
simple_graphics = []
# textures
texture_graphics = []
# text
text_graphics = ["ttf-parser","ab_glyph_rasterizer"]
# audio
[dependencies.cat_audio]
path = "cat_audio"
version = "0.0.4"
optional = true
[dependencies.cat_engine_basement]
path = "basement"
version = "0.0.0-alpha7"
features = ["opengl"]
[dependencies]
# text
ttf-parser = { version = "0.12.3", optional = true }
ab_glyph_rasterizer = { version = "0.1.4", optional = true }