generated from ewpratten/rust-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (32 loc) · 875 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
[package]
name = "raylib-ffi"
version = "5.5.0"
authors = ["Evan Pratten <[email protected]>"]
edition = "2021"
description = "Automatic raw Rust bindings to raylib"
documentation = "https://docs.rs/raylib-ffi"
readme = "README.md"
homepage = "https://github.com/ewpratten/raylib-ffi"
repository = "https://github.com/ewpratten/raylib-ffi"
license = "GPL-3.0"
keywords = ["raylib", "graphics"]
categories = ["external-ffi-bindings", "graphics", "multimedia", "rendering"]
exclude = [
"third_party/raylib/examples/*",
"third_party/raylib/logo/*",
"third_party/raylib/projects/*"
]
build = "build/main.rs"
[dependencies]
num-traits = "^0.2.19"
num-derive = "^0.4.2"
[build-dependencies]
bindgen = "0.70.1"
cmake = "0.1.51"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1"
[features]
default = ["macros"]
macros = []
dylib = []