Skip to content

Commit

Permalink
Exclude py src from package
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelOwenDyer committed Apr 10, 2024
1 parent f656d82 commit bcc0228
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rand_distr/Cargo.toml
Expand Up @@ -14,7 +14,7 @@ keywords = ["random", "rng", "distribution", "probability"]
categories = ["algorithms", "no-std"]
edition = "2021"
rust-version = "1.61"
include = ["src/", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]
include = ["/src", "LICENSE-*", "README.md", "CHANGELOG.md", "COPYRIGHT"]

[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]
Expand Down
1 change: 1 addition & 0 deletions rand_distr/src/normal.rs
Expand Up @@ -42,6 +42,7 @@ use core::fmt;
/// The following diagram shows the standard normal distribution.
///
/// ![Standard normal distribution][diagram]
///
#[cfg_attr(feature = "doc-images", doc = embed_doc_image::embed_image!("diagram", "plots/standard_normal.svg"))]
#[derive(Clone, Copy, Debug)]
#[cfg_attr(feature = "serde1", derive(serde::Serialize, serde::Deserialize))]
Expand Down

0 comments on commit bcc0228

Please sign in to comment.