Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Key modules include:
- `atom::uri` - URI parsing and resolution
- `atom::storage` - Storage backend implementations

See the [atom crate documentation](https://docs.rs/atom) for detailed API information.
See the [atom crate documentation](https://docs.eka.rs/atom/) for detailed API information.

### CLI Interface

Expand Down
6 changes: 3 additions & 3 deletions crates/atom/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ const EKALA: &str = "ekala";
const LOCK: &str = "lock";
const TOML: &str = "toml";

/// The conventional filename for an Atom lockfile (e.g., `atom.lock`).
/// The conventional filename for an Atom manifest (e.g., `atom.toml`).
///
/// This static variable is lazily initialized to ensure it is constructed only when needed.
pub static ATOM_MANIFEST_NAME: LazyLock<String> = LazyLock::new(|| format!("{}.{}", ATOM, TOML));
/// The conventional filename for an Atom manifest (e.g., `atom.toml`).
/// The conventional filename for an Ekala manifest (e.g., `ekala.toml`).
///
/// This static variable is lazily initialized to ensure it is constructed only when needed.
pub static EKALA_MANIFEST_NAME: LazyLock<String> = LazyLock::new(|| format!("{}.{}", EKALA, TOML));
/// The conventional filename for an Ekala manifest (e.g., `ekala.toml`).
/// The conventional filename for an Atom lockfile (e.g., `atom.lock`).
///
/// This static variable is lazily initialized to ensure it is constructed only when needed.
pub static LOCK_NAME: LazyLock<String> = LazyLock::new(|| format!("{}.{}", ATOM, LOCK));
Expand Down