[package]
edition = "2021"
name = "ocel-cli"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool to convert and validate OCEL 2.0 event logs"
documentation = "https://docs.rs/ocel-cli"
readme = "README.md"
keywords = [
"ocel",
"process-mining",
"event-log",
"cli",
"ocel2",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT"
repository = "https://github.com/katsut/ocel-rs"
[[bin]]
name = "ocel"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ocel]
version = "0.1.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1