[package]
edition = "2021"
name = "notebookx"
version = "0.1.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, lightweight notebook conversion library"
readme = "README.md"
license = "MIT"
repository = "https://github.com/notebookx/notebookx"
[features]
cli = ["dep:clap"]
default = []
[lib]
name = "notebookx"
path = "src/lib.rs"
[[bin]]
name = "nbx"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "integration_clean"
path = "tests/integration_clean.rs"
[[test]]
name = "integration_ipynb"
path = "tests/integration_ipynb.rs"
[[test]]
name = "integration_percent"
path = "tests/integration_percent.rs"
[dependencies.clap]
version = "4.0"
features = ["derive"]
optional = true
[dependencies.indexmap]
version = "2.0"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.pretty_assertions]
version = "1.4"
[dev-dependencies.tempfile]
version = "3"