diff --git a/Cargo.toml b/Cargo.toml index 64f18ae34..efc035f00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,14 @@ description = "An n-dimensional array for general elements and for numerics. Lig keywords = ["array", "data-structure", "multidimensional", "matrix", "blas"] categories = ["data-structures", "science"] -exclude = ["docgen/images/*"] +include = [ + "/src/**/*.rs", + "LICENSE-MIT", + "LICENSE-APACHE", + "RELEASES.md", + "README.rst", + "README-quick-start.md" +] resolver = "2" [lib] diff --git a/ndarray-rand/Cargo.toml b/ndarray-rand/Cargo.toml index 223dcdfc9..b7169f304 100644 --- a/ndarray-rand/Cargo.toml +++ b/ndarray-rand/Cargo.toml @@ -13,6 +13,14 @@ description = "Constructors for randomized arrays. `rand` integration for `ndarr keywords = ["multidimensional", "matrix", "rand", "ndarray"] +include = [ + "/src/**/*.rs", + "LICENSE-MIT", + "LICENSE-APACHE", + "RELEASES.md", + "README.rst" +] + [dependencies] ndarray = { workspace = true }