Added initial skeleton files
This commit is contained in:
parent
895e4e6366
commit
f3e24283d1
3 changed files with 21 additions and 0 deletions
12
implot-sys/Cargo.toml
Normal file
12
implot-sys/Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
[package]
|
||||
name = "implot-sys"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Sandro Merkli", "implot-rs contributors"]
|
||||
description = "Raw FFI bindings to implot"
|
||||
license = "MIT/Apache-2.0"
|
||||
categories = ["gui", "external-ffi-bindings"]
|
||||
build = "build.rs"
|
||||
|
||||
[build-dependencies]
|
||||
cc = "1.0"
|
6
implot-sys/build.rs
Normal file
6
implot-sys/build.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
use std::io;
|
||||
|
||||
fn main() -> io::Result<()> {
|
||||
// Does nothing yet
|
||||
Ok(())
|
||||
}
|
3
implot-sys/src/lib.rs
Normal file
3
implot-sys/src/lib.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn _does_nothing() {
|
||||
println!("This does nothing yet");
|
||||
}
|
Loading…
Reference in a new issue