Rename crate to luau0-src

This commit is contained in:
Alex Orlenko 2022-02-24 15:06:49 +00:00
parent 2b08eba69c
commit 5dbdb036dd
No known key found for this signature in database
GPG Key ID: 4C150C250863B96D
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[package]
name = "luau-src"
name = "luau0-src"
version = "1.0.0+luau515"
authors = ["Aleksandr Orlenko <zxteam@protonmail.com>"]
edition = "2018"

View File

@ -3,5 +3,5 @@ name = "testcrate"
version = "0.1.0"
authors = ["Aleksandr Orlenko <zxteam@protonmail.com>"]
[build-dependencies.luau-src]
[build-dependencies.luau0-src]
path = ".."

View File

@ -1,5 +1,5 @@
fn main() {
println!("cargo:rerun-if-changed=build.rs");
let artifacts = luau_src::Build::new().build();
let artifacts = luau0_src::Build::new().build();
artifacts.print_cargo_metadata();
}