From a705ff7d25275b90636e3e2092a242bd25ca54e5 Mon Sep 17 00:00:00 2001 From: Aaron Loucks Date: Sun, 19 Jan 2020 01:19:51 -0500 Subject: [PATCH] Rename to luajit2-sys --- Cargo.toml | 4 ++-- README.md | 2 +- examples/lua.rs | 2 +- tests/test.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e407f7c..9970652 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "luajit-sys" +name = "luajit2-sys" version = "0.0.1" authors = ["Aaron Loucks "] edition = "2018" @@ -10,4 +10,4 @@ libc = "0.2" [build-dependencies] cc = "1.0.40" -fs_extra = "1.1.0" \ No newline at end of file +fs_extra = "1.1.0" diff --git a/README.md b/README.md index 879aa22..6d5e744 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Rust LuaJIT 2 Bindings -[![Build Status](https://dev.azure.com/aloucks/aloucks/_apis/build/status/aloucks.luajit-sys?branchName=master)](https://dev.azure.com/aloucks/aloucks/_build/latest?definitionId=2&branchName=master) +[![Build Status](https://dev.azure.com/aloucks/aloucks/_apis/build/status/aloucks.luajit2-sys?branchName=master)](https://dev.azure.com/aloucks/aloucks/_build/latest?definitionId=3&branchName=master) diff --git a/examples/lua.rs b/examples/lua.rs index aa45cae..0784409 100644 --- a/examples/lua.rs +++ b/examples/lua.rs @@ -2,7 +2,7 @@ use std::env; use std::ffi::{CStr, CString}; use std::ptr; -use luajit_sys as sys; +use luajit2_sys as sys; unsafe fn run_script(script_name: String, script_src: String) { let lua = sys::luaL_newstate(); diff --git a/tests/test.rs b/tests/test.rs index e737156..8a018ea 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,4 +1,4 @@ -use luajit_sys as sys; +use luajit2_sys as sys; #[test] fn run_script() {