[package]
edition = "2024"
name = "ito-domain"
version = "0.1.18"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain models and repositories for Ito"
homepage = "https://github.com/withakay/ito"
readme = false
license = "MIT"
repository = "https://github.com/withakay/ito"
[lib]
name = "ito_domain"
path = "src/lib.rs"
[[test]]
name = "planning"
path = "tests/planning.rs"
[[test]]
name = "schema_roundtrip"
path = "tests/schema_roundtrip.rs"
[[test]]
name = "schema_validation"
path = "tests/schema_validation.rs"
[[test]]
name = "tasks"
path = "tests/tasks.rs"
[[test]]
name = "tasks_parsing"
path = "tests/tasks_parsing.rs"
[[test]]
name = "tasks_parsing_additional"
path = "tests/tasks_parsing_additional.rs"
[[test]]
name = "tasks_update"
path = "tests/tasks_update.rs"
[dependencies.chrono]
version = "0.4.40"
features = [
"clock",
"std",
]
default-features = false
[dependencies.ito-common]
version = "0.1.18"
[dependencies.regex]
version = "1.11.1"
[dependencies.rusqlite]
version = "0.31.0"
features = ["bundled"]
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.138"
[dependencies.thiserror]
version = "2.0.11"
[dependencies.uuid]
version = "1.11.0"
features = ["v4"]
[dev-dependencies.serde_yaml]
version = "0.9.34"
[dev-dependencies.tempfile]
version = "3.15.0"