code-moniker-workspace 0.4.0

Workspace model, ports, snapshots, linkage, and change analysis for code-moniker.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod model;
mod resolve;
mod store;

pub use model::{
	Note, NoteAuthor, NoteId, NoteKind, NoteResolution, NoteStatus, ResolvedNote, TransitionError,
};
pub use resolve::resolve_notes;
pub use store::{
	NoteChanges, NotesDocument, NotesStore, NotesWatchTarget, WorkspaceNotes, notes_dir,
	notes_path, notes_root_for_paths, notes_watch_targets_for_paths,
};