1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright 2026 Mathews Tom
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// https://www.apache.org/licenses/LICENSE-2.0
//! # scrybe
//!
//! Open-source local-first meeting transcription and notes.
//!
//! This crate is a **pre-release namespace placeholder**. The functional
//! library, CLI, and platform capture adapters are tracked in the
//! repository at <https://github.com/Mathews-Tom/scrybe>; the architecture
//! is documented in `docs/system-overview.md` and `docs/system-design.md`,
//! and the delivery plan in `.docs/development-plan.md`.
//!
//! No public API is exposed at this version. Depend on a later release
//! once the `scrybe-core` crate ships.
/// Project name as exposed in CLI banners and crate metadata.
pub const NAME: &str = "scrybe";
/// Crate version reported by the placeholder; matches `Cargo.toml`.
pub const VERSION: &str = env!;
/// Repository URL for users who reach this crate from `cargo search`.
pub const REPOSITORY: &str = "https://github.com/Mathews-Tom/scrybe";