Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparations for v0.3 release #7

Merged
merged 4 commits into from
Aug 22, 2024
Merged
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
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "ordpath"
version = "0.2.0"
version = "0.3.0"
authors = ["Yoh Deadfall <[email protected]>"]
edition = "2021"
homepage = "https://github.com/yohdeadfall/ordpath/"
repository = "https://github.com/yohdeadfall/ordpath/"
description = "Implementation of ORDPATH encoding"
description = "Implementation of the ORDPATH hierarchical labeling scheme"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["encoding", "ordering", "hierarchy"]
keywords = ["encoding", "ordering", "hierarchy", "labeling"]
categories = ["encoding"]
exclude = [".github/"]

Expand Down
File renamed without changes.
File renamed without changes.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# ordpath

A hierarchy labeling scheme called ORDPATH.
ORDPATH is a hierarchical labeling scheme.

The crate provides low and high level APIs for reading, writing an manipulating ORDPATH bitstrings.

## License

The code in this repository is dual licensed under either:

* MIT License ([LICENSE-MIT](see LICENSE-MIT))
* Apache License, Version 2.0 (see [LICENSE-APACHE](LICENSE-APACHE))
2 changes: 1 addition & 1 deletion src/enc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl fmt::Debug for Stage {
}
}

/// An implementation of `Alloctor` is responsible for providing a [`Stage`]
/// An implementation of `Encoding` is responsible for providing a [`Stage`]
/// for the provided value or prefix.
pub trait Encoding: PartialEq + Eq {
/// Returns a reference to the [`Stage`] corresponding to the prefix.
Expand Down
Loading