Skip to content

Commit 5f4e53b

Browse files
committed
Update Cargo.toml with metadata and documentation links
- Added author information, license, and description to enhance project clarity. - Included homepage, repository, and documentation links for better accessibility. - Specified exclusions for build artifacts and IDE files to streamline project management. - Configured docs.rs metadata to enable full feature documentation generation.
1 parent e8987e2 commit 5f4e53b

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,20 @@ name = "cachekit"
33
version = "0.1.0-alpha"
44
edition = "2024"
55
rust-version = "1.85"
6+
authors = ["Thomas Korrison <ferrite.db@gmail.com>"]
67
license = "MIT OR Apache-2.0"
78
description = "High-performance, policy-driven cache primitives for Rust systems (FIFO/LRU/ARC) with optional metrics."
9+
homepage = "https://oxidizelabs.github.io/cachekit/"
810
repository = "https://github.com/OxidizeLabs/cachekit"
911
documentation = "https://oxidizelabs.github.io/cachekit/"
1012
readme = "README.md"
1113
keywords = ["cache", "lru", "fifo", "arc", "cache"]
1214
categories = ["data-structures", "caching"]
15+
exclude = ["/.idea/", "/target/", "/.DS_Store", "/**/.DS_Store"]
16+
17+
[package.metadata.docs.rs]
18+
all-features = true
19+
rustdoc-args = ["--cfg", "docsrs"]
1320

1421
[features]
1522
default = []

0 commit comments

Comments
 (0)