Update docs icon; Update homepage URL; Fix docs entries for the 'encode' and 'decode' modules;
This commit is contained in:
parent
0f20a01971
commit
4f624dfebc
8 changed files with 28 additions and 18 deletions
|
@ -1,8 +1,14 @@
|
|||
# Changelog
|
||||
|
||||
This is the changelog of [oct](https://mandelbrot.dk/oct/).
|
||||
This is the changelog of [Oct](https://crates.io/crates/oct/).
|
||||
See `README.md` for more information.
|
||||
|
||||
## 0.14.4
|
||||
|
||||
* Update docs icon
|
||||
* Update homepage URL
|
||||
* Fix docs entries for the `encode` and `decode` modules
|
||||
|
||||
## 0.14.3
|
||||
|
||||
* Update readme
|
||||
|
|
|
@ -6,7 +6,7 @@ resolver = "2"
|
|||
authors = ["Gabriel Bjørnager Jensen"]
|
||||
description = "Octonary transcoder."
|
||||
readme = "README.md"
|
||||
homepage = "https://docs.rs/oct/latest/oct/"
|
||||
homepage = "https://crates.io/crates/oct/"
|
||||
repository = "https://mandelbrot.dk/oct/"
|
||||
license = "LGPL-3.0-or-later"
|
||||
keywords = ["api", "encoding", "io", "network", "no-std"]
|
||||
|
|
20
doc-icon.svg
20
doc-icon.svg
|
@ -1,17 +1,27 @@
|
|||
<svg height="96" width="96" xmlns="http://www.w3.org/2000/svg">
|
||||
<svg height="112" width="112" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="tHorizontalArm">
|
||||
<rect fill="white" height="100%" width="100%" x="0" y="0" />
|
||||
<circle cx="48" cy="48" fill="none" r="32" stroke="black" stroke-width="24" />
|
||||
<circle cx="56" cy="56" fill="none" r="32" stroke="black" stroke-width="24" />
|
||||
</mask>
|
||||
|
||||
<mask id="border">
|
||||
<!-- O: -->
|
||||
<circle cx="56" cy="56" fill="none" r="32" stroke="white" stroke-width="24" />
|
||||
|
||||
<!-- T: -->
|
||||
<rect fill="white" height="16" stroke="white" stroke-width="8" width="96" x="8" y="48" />
|
||||
<rect fill="white" height="96" stroke="white" stroke-width="8" width="16" x="48" y="8" />
|
||||
</mask>
|
||||
|
||||
<mask id="glyph">
|
||||
<!-- O: -->
|
||||
<circle cx="48" cy="48" fill="none" r="32" stroke="white" stroke-width="16" />
|
||||
<circle cx="56" cy="56" fill="none" r="32" stroke="white" stroke-width="16" />
|
||||
|
||||
<!-- T: -->
|
||||
<rect fill="white" height="16" paint-order="stroke" stroke="black" stroke-width="8" width="96" x="0" y="40" />
|
||||
<rect fill="white" height="96" mask="url(#tHorizontalArm)" width="16" x="40" y="0" />
|
||||
<rect fill="white" height="16" paint-order="stroke" stroke="black" stroke-width="8" width="96" x="8" y="48" />
|
||||
<rect fill="white" height="96" mask="url(#tHorizontalArm)" width="16" x="48" y="8" />
|
||||
</mask>
|
||||
|
||||
<rect fill="#000000" height="100%" mask="url(#border)" width="100%" x="0" y="0" /> <!-- oklch(50% 0.115300 158.520) -->
|
||||
<rect fill="#FFFFFF" height="100%" mask="url(#glyph)" width="100%" x="0" y="0" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 676 B After Width: | Height: | Size: 1.1 KiB |
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oct-benchmarks"
|
||||
version = "0.14.3"
|
||||
version = "0.14.4"
|
||||
edition = "2021"
|
||||
description = "oct benchmarks."
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oct-macros"
|
||||
version = "0.14.3"
|
||||
version = "0.14.4"
|
||||
edition = "2021"
|
||||
documentation = "https://docs.rs/oct-macros/"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oct"
|
||||
version = "0.14.3"
|
||||
version = "0.14.4"
|
||||
edition = "2021"
|
||||
rust-version = "1.83"
|
||||
documentation = "https://docs.rs/oct/"
|
||||
|
|
|
@ -19,10 +19,7 @@
|
|||
// er General Public License along with Oct. If
|
||||
// not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
//! Error variants.
|
||||
//!
|
||||
//! This module defines the error types used by oct.
|
||||
//! All of these types define (at least conditionally) the [`Error`](core::error::Error) trait.
|
||||
//! Decoding-related facilities.
|
||||
|
||||
use crate::use_mod;
|
||||
|
||||
|
|
|
@ -19,10 +19,7 @@
|
|||
// er General Public License along with Oct. If
|
||||
// not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
//! Error variants.
|
||||
//!
|
||||
//! This module defines the error types used by oct.
|
||||
//! All of these types define (at least conditionally) the [`Error`](core::error::Error) trait.
|
||||
//! Encoding-related facilities.
|
||||
|
||||
use crate::use_mod;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue