diff --git a/crates/nsi-3delight/Cargo.toml b/crates/nsi-3delight/Cargo.toml index 6d7865f..330eba9 100644 --- a/crates/nsi-3delight/Cargo.toml +++ b/crates/nsi-3delight/Cargo.toml @@ -15,3 +15,6 @@ repository = "https://github.com/virtualritz/nsi-3delight/" [dependencies] nsi-core = { version = "0.8", path = "../nsi-core" } nsi-toolbelt = { version = "0.8", path = "../nsi-toolbelt" } + +[package.metadata.docs.rs] +all-features = true \ No newline at end of file diff --git a/crates/nsi-core/Cargo.toml b/crates/nsi-core/Cargo.toml index 1e0da6c..c3e3b8e 100644 --- a/crates/nsi-core/Cargo.toml +++ b/crates/nsi-core/Cargo.toml @@ -35,9 +35,9 @@ reqwest = { version = "0.11", features = ["blocking"], optional = true } dlopen2 = { version = "0.6", optional = true } enum_dispatch = "0.3" lazy_static = "1.4" -log = "0.4.20" +log = "0.4" ndspy-sys = { version = "0.2", optional = true } -nsi-sys = { version = "0.7", path = "../nsi-sys" } +nsi-sys = "0.7" null-terminated-str = "0.1" num_enum = "0.7" rclite = "0.2" @@ -45,3 +45,4 @@ ustr = "0.10" [package.metadata.docs.rs] features = ["output", "nightly"] +all-features = true diff --git a/crates/nsi-jupyter/Cargo.toml b/crates/nsi-jupyter/Cargo.toml index 6d472b2..3856e1b 100644 --- a/crates/nsi-jupyter/Cargo.toml +++ b/crates/nsi-jupyter/Cargo.toml @@ -19,3 +19,6 @@ evcxr_runtime = "1.1" nsi-core = { version = "0.8", path = "../nsi-core", features = ["output"] } png = "0.17" rayon = "1.8" + +[package.metadata.docs.rs] +all-features = true \ No newline at end of file diff --git a/crates/nsi-sys/Cargo.toml b/crates/nsi-sys/Cargo.toml index 9b0faa0..f48d57b 100755 --- a/crates/nsi-sys/Cargo.toml +++ b/crates/nsi-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nsi-sys" -version = "0.7.2" +version = "0.8.0" authors = ["Moritz Moeller "] build = "build.rs" edition = "2021" diff --git a/crates/nsi-toolbelt/Cargo.toml b/crates/nsi-toolbelt/Cargo.toml index de0a820..d986300 100644 --- a/crates/nsi-toolbelt/Cargo.toml +++ b/crates/nsi-toolbelt/Cargo.toml @@ -17,3 +17,6 @@ nsi-core = { version = "0.8", path = "../nsi-core" } petname = { version = "1.1", default-features = false, features = ["std_rng", "default_dictionary"] } rand = { version = "0.8", features = ["small_rng"] } ultraviolet = { version = "0.9", features = ["f64"] } + +[package.metadata.docs.rs] +all-features = true