diff --git a/Cargo.toml b/Cargo.toml index 09be657..094f7a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "adlx" -version = "0.0.0" +version = "0.0.0-alpha.1" authors = ["Traverse Research "] edition = "2021" license = "MIT" homepage = "https://traverseresearch.nl" repository = "https://github.com/Traverse-Research/adlx-rs" -description = "Bindings for AMd's Device Library eXtra" +description = "Bindings for AMD's Device Library eXtra" include = ["src", "LICENSE"] -categories = ["api-bindings"] #, "external-ffi-bindings", "rendering::graphics-api"] # https://crates.io/category_slugs +categories = ["api-bindings", "external-ffi-bindings", "graphics"] # https://crates.io/category_slugs keywords = ["amd", "adlx", "gpu"] [dependencies] diff --git a/README.md b/README.md index 8cfe369..99dc0e5 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add this to your Cargo.toml: ```toml [dependencies] -adlx = "0.0.0" +adlx = "0.0.0-alpha.1" ``` ## Code example diff --git a/api_gen/Cargo.toml b/api_gen/Cargo.toml index 67d893c..0b330ec 100644 --- a/api_gen/Cargo.toml +++ b/api_gen/Cargo.toml @@ -5,4 +5,7 @@ edition = "2021" publish = false [dependencies] -bindgen = "0.69.2" +# Version-locked to not make the CI go out of date +bindgen = "=0.69.4" +# Force a higher version to fix https://github.com/rust-lang/regex/issues/770 in MSRV +regex-syntax = "0.6.26" diff --git a/release.toml b/release.toml index 102f4c9..a138287 100644 --- a/release.toml +++ b/release.toml @@ -6,7 +6,7 @@ sign-tag = true publish = false pre-release-replacements = [ - { file = "README.md", search = "adlx-rs = .*", replace = "{{crate_name}} = \"{{version}}\"" }, + { file = "README.md", search = "adlx = .*", replace = "{{crate_name}} = \"{{version}}\"" }, ] # cargo-release only allows using {{version}} in the commit title when creating one diff --git a/src/ffi.rs b/src/ffi.rs index 4c3a58b..e9dc2fe 100644 --- a/src/ffi.rs +++ b/src/ffi.rs @@ -1,4 +1,4 @@ -/* automatically generated by rust-bindgen 0.69.2 */ +/* automatically generated by rust-bindgen 0.69.4 */ pub const ADLX_VER_MAJOR: u32 = 1; pub const ADLX_VER_MINOR: u32 = 2;