diff --git a/README.md b/README.md index 9b77f40b5452ecb7dd2ed83e51fe158c72f0b892..cbd516cb71af5e00867533ce1827885e56d02f4a 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,7 @@ libopenraw-rs Rust bindings for libopenraw. +Requires libopenraw 0.3.x. + +`libopenraw-sys` is the direct bindings generated with bingen. +`libopenraw` is the Rust API. diff --git a/libopenraw-sys/Cargo.toml b/libopenraw-sys/Cargo.toml index 61aa14cf2e50001cd231ab7bf60dd6902585fb0a..c29afdc922dce54af63b9bf43ed77b33eef2907d 100644 --- a/libopenraw-sys/Cargo.toml +++ b/libopenraw-sys/Cargo.toml @@ -4,6 +4,12 @@ version = "0.1.0" authors = ["Hubert Figuière <hub@figuiere.net>"] edition = "2018" build = "build.rs" +license = "MIT" +description = "Rust FFI for libopenraw" +repository = "https://gitlab.freedesktop.org/libopenraw/libopenraw-rs" +homepage = "https://libopenraw.freedesktop.org/libopenraw/" +keywords = [ "image", "photography", "file format", "ffi" ] + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libopenraw-sys/NEWS b/libopenraw-sys/NEWS new file mode 100644 index 0000000000000000000000000000000000000000..eb6bd3ef16f2e965cf840fe0556a5d6365d4f66a --- /dev/null +++ b/libopenraw-sys/NEWS @@ -0,0 +1,4 @@ +0.1.0 - 2022/11/6 +================= + +- Initial release \ No newline at end of file diff --git a/libopenraw/Cargo.toml b/libopenraw/Cargo.toml index d0ac2f15f927c8e4515ca93c477161e6e2621991..06be8976d3e680157a46358e92cb62be2bc1da8b 100644 --- a/libopenraw/Cargo.toml +++ b/libopenraw/Cargo.toml @@ -3,6 +3,11 @@ name = "libopenraw" version = "0.1.0" authors = ["Hubert Figuière <hub@figuiere.net>"] edition = "2018" +description = "Rust API bindings for libopenraw" +repository = "https://gitlab.freedesktop.org/libopenraw/libopenraw-rs" +homepage = "https://libopenraw.freedesktop.org/libopenraw/" +license = "MPL-2.0" +keywords = [ "image", "photography", "file format" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libopenraw/NEWS b/libopenraw/NEWS new file mode 100644 index 0000000000000000000000000000000000000000..eb6bd3ef16f2e965cf840fe0556a5d6365d4f66a --- /dev/null +++ b/libopenraw/NEWS @@ -0,0 +1,4 @@ +0.1.0 - 2022/11/6 +================= + +- Initial release \ No newline at end of file