[package]
edition = "2021"
name = "jumpcut"
version = "0.8.0"
build = false
include = [
"CHANGELOG.md",
"Cargo.lock",
"Cargo.toml",
"LICENSE",
"README.md",
"src/bin/main.rs",
"src/converters.rs",
"src/lib.rs",
"src/rendering/*.rs",
"src/templates/html_style.css",
"src/text_style_parser.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JumpCut is a library and CLI for converting Fountain-formatted text files into FDX and HTML formats."
homepage = "https://github.com/SimonGZ/jumpcut"
readme = "README.md"
keywords = [
"fountain",
"screenwriting",
]
license = "MIT"
repository = "https://github.com/SimonGZ/jumpcut"
[features]
cli = ["clap"]
default = [
"html",
"fdx",
"cli",
]
fdx = []
html = []
lib-only = [
"html",
"fdx",
]
[lib]
name = "jumpcut"
path = "src/lib.rs"
[[bin]]
name = "jumpcut"
path = "src/bin/main.rs"
[dependencies.clap]
version = "4.5.7"
features = ["derive"]
optional = true
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.serde]
version = "1.0.203"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.117"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.handlebars]
version = "5.1.2"
[dev-dependencies.pretty_assertions]
version = "1.0.0"
[dev-dependencies.unicode_categories]
version = "0.1.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.regex]
version = "1.10.5"
features = [
"std",
"perf",
]
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies.regex]
version = "1.10.5"
features = [
"std",
"perf-dfa",
]
default-features = false
[profile.release]
lto = true
codegen-units = 1
panic = "abort"