[package]
edition = "2021"
name = "ocel"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OCEL 2.0 data model, I/O (JSON/SQLite/XML), and validation library"
documentation = "https://docs.rs/ocel"
readme = "README.md"
keywords = [
"ocel",
"process-mining",
"event-log",
"object-centric",
"ocel2",
]
categories = [
"data-structures",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/katsut/ocel-rs"
[lib]
name = "ocel"
path = "src/lib.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "roundtrip"
path = "examples/roundtrip.rs"
[[test]]
name = "filter"
path = "tests/filter.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "graph"
path = "tests/graph.rs"
[[test]]
name = "json_io"
path = "tests/json_io.rs"
[[test]]
name = "large_scale"
path = "tests/large_scale.rs"
[[test]]
name = "model"
path = "tests/model.rs"
[[test]]
name = "sample"
path = "tests/sample.rs"
[[test]]
name = "sqlite_io"
path = "tests/sqlite_io.rs"
[[test]]
name = "typed_io"
path = "tests/typed_io.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[[test]]
name = "xml_io"
path = "tests/xml_io.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.chrono]
version = "0.4"
features = ["serde"]
[dev-dependencies.serde_json]
version = "1"
[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