bump to .1.1

This commit is contained in:
Sevki 2024-05-08 12:52:49 +00:00
parent 37186f2016
commit 205777928f
4 changed files with 7 additions and 8 deletions

2
Cargo.lock generated
View file

@ -148,7 +148,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]]
name = "make-sys"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"bindgen",
"glob",

View file

@ -1,6 +1,6 @@
[package]
name = "make-sys"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
build = "build.rs"
repository = "https://github.com/oknotokcomputer/make-sys"

View file

@ -7,5 +7,5 @@
## Installation
Currently installation assumes a debian base system, see [build.rs](build.rs) for details.
Currently installation assumes a debian base system, see [build.rs](build.rs#L28) for details.

View file

@ -4,10 +4,9 @@
use std::ffi;
mod make_sys {
include!(concat!(env!("OUT_DIR"), "/make/src/bindings.rs"));
}
struct Floc(make_sys::floc);
include!(concat!(env!("OUT_DIR"), "/make/src/bindings.rs"));
struct Floc(floc);
#[cfg(test)]
mod tests {
@ -15,7 +14,7 @@ mod tests {
#[test]
fn test_make() {
let mut floc = Floc(make_sys::floc {
let mut floc = Floc(floc {
lineno: 0,
filenm: std::ptr::null_mut(),
offset: 0,