[package]
edition = "2021"
rust-version = "1.70"
name = "nbstrip"
version = "0.2.1"
build = false
exclude = [
".github/",
"docs/",
"scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast *.ipynb notebook output stripper and git clean filter: outputs, execution counts, and transient metadata never reach git."
documentation = "https://docs.rs/nbstrip"
readme = "README.md"
keywords = [
"jupyter",
"notebook",
"ipynb",
"filter",
"nbstripout",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/justpresident/nbstrip"
[[bin]]
name = "nbstrip"
path = "src/main.rs"
[[test]]
name = "install"
path = "tests/install.rs"
[dependencies.serde]
version = "1"
[dependencies.serde_json]
version = "1"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
missing_const_for_fn = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "warn"
panic = "warn"
redundant_pub_crate = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1