diff --git a/Cargo.toml b/Cargo.toml index c43e342..4f069ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,3 +5,6 @@ members = [ "ffi", "lib/src/bindings/runbindgen", ] + +[workspace.package] +readme = "README.md" diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 3fe1e55..14f452c 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -9,6 +9,8 @@ categories = ["os"] keywords = ["v4l2", "video", "linux", "ffi"] license = "MIT" +readme.workspace = true + [lib] crate-type = ["lib", "staticlib"] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index fdd6bec..29b5359 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -9,6 +9,8 @@ categories = ["os"] keywords = ["v4l2", "video", "linux"] license = "MIT" +readme.workspace = true + [dependencies] nix = { version = "0.28", features = ["ioctl", "mman", "poll", "fs", "event"] } bitflags = "2.4"