1

SVG support

This commit is contained in:
Evan Pratten 2024-09-26 15:26:56 -04:00
parent 900eedec1e
commit cd4ad6c87e
2 changed files with 9 additions and 5 deletions

@ -1,6 +1,6 @@
[package]
name = "raylib-ffi"
version = "5.0.1"
version = "5.0.2"
authors = ["Evan Pratten <ewpratten@gmail.com>"]
edition = "2021"
description = "Automatic raw Rust bindings to raylib"
@ -19,12 +19,12 @@ exclude = [
build = "build/main.rs"
[dependencies]
num-traits = "0.2.17"
num-derive = "0.4.1"
num-traits = "^0.2.17"
num-derive = "^0.4.1"
[build-dependencies]
bindgen = "0.69.1"
cmake = "^0.1.49"
bindgen = "0.70.1"
cmake = "0.1.51"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1"

@ -1,3 +1,7 @@
// This file is used to inform bindgen about every header we need to parse
// Configuration variables
#define SUPPORT_FILEFORMAT_SVG 1
// Load raylib
#include "../third_party/raylib/src/raylib.h"