[package]
edition = "2024"
name = "chronicle-graph"
version = "0.1.1"
build = false
exclude = [
".kiro/",
".agents/",
"docs/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Event-centric narrative knowledge graphs with temporal verification"
readme = "README.md"
keywords = [
"narrative",
"knowledge-graph",
"world-building",
"temporal",
"lore",
]
categories = [
"data-structures",
"game-development",
]
license = "MIT"
repository = "https://github.com/EliasVahlberg/chronicle"
[lib]
name = "chronicle"
path = "src/lib.rs"
[[test]]
name = "boundary_conditions"
path = "tests/boundary_conditions.rs"
[[test]]
name = "can_add_event"
path = "tests/can_add_event.rs"
[[test]]
name = "siege_of_silica"
path = "tests/siege_of_silica.rs"
[[test]]
name = "subjective_fragments"
path = "tests/subjective_fragments.rs"
[[test]]
name = "validation_errors"
path = "tests/validation_errors.rs"
[dependencies.allen-intervals]
version = "0.1"
[dependencies.petgraph]
version = "0.8"
features = [
"serde-1",
"stable_graph",
]
[dependencies.ron]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"