-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (58 loc) · 866 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "raylib-bindings"
version = "0.3.1"
edition = "2021"
build = "build/main.rs"
[lib]
name = "raylib"
path = "src/lib.rs"
[dependencies]
bitflags = "2.4.2"
float-cmp = "0.9.0"
fontdue = "0.8.0"
half = "2.4.0"
hashbrown = "0.14.3"
va_list = "0.1.4"
[build-dependencies]
cmake = "0.1.50"
[features]
default = [
"image_export", "image_generation", "image_manipulation",
"png", "dds", "hdr", "jpg", "gif", "qoi",
"obj", "mtl", "iqm", "gltf", "vox", "m3d",
"wav", "ogg", "xm", "mod", "mp3", "qoa"
]
ffi = []
rlgl = []
image_export = []
image_generation = []
image_manipulation = []
png = []
dds = []
hdr = []
pic = []
pnm = []
ktx = []
astc = []
bmp = []
tga = []
jpg = []
gif = []
qoi = []
psd = []
pkm = []
pvr = []
svg = []
obj = []
mtl = []
iqm = []
gltf = []
vox = []
m3d = []
wav = []
ogg = []
xm = []
mod = []
mp3 = []
qoa = []
flac = []