Added main crate and some initial code for idiomatic bindings

This commit is contained in:
4bb4 2020-08-04 22:05:04 +02:00
parent db4d307b85
commit ee910152b7
6 changed files with 130 additions and 43 deletions

View file

@ -4,6 +4,8 @@ version = "0.1.0"
edition = "2018"
authors = ["Sandro Merkli", "implot-rs contributors"]
description = "Raw FFI bindings to implot"
homepage = "https://github.com/4bb4/implot-rs"
repository = "https://github.com/4bb4/implot-rs"
license = "MIT/Apache-2.0"
categories = ["gui", "external-ffi-bindings"]
build = "build.rs"

View file

@ -2,4 +2,6 @@
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
pub use imgui;
include!("bindings.rs");