cartulary 0.3.0-alpha.1

The knowledge layer of your project — decisions, issues, docs, all in one place.
Documentation
mod assignee;
mod collection;
pub mod companion;
mod edit;
mod finding;
mod issue_link;
mod tracker;
mod value;
mod view;

#[cfg(test)]
pub mod test_fixtures;

pub use assignee::Assignee;
pub use collection::IssueCollection;
pub use edit::{apply_edit, apply_edits, IssueEdit};
pub use finding::IssueFinding;
pub use issue_link::{IssueLink, IssueLinks, IssueRelationship};
pub use tracker::Tracker;
pub use value::{Issue, IssueFilter};
pub use view::IssueView;

/// Re-export the unified `Event` and `EventLog` types.
pub use crate::domain::model::event::Event;
pub use crate::domain::model::event::EventLog;