Skip to content

Commit 9f9516b

Browse files
committed
Complete Cargo.toml manifest for spdlog-internal crate
1 parent cb16640 commit 9f9516b

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

spdlog-internal/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name = "spdlog-internal"
33
version = "0.1.0"
44
edition = "2021"
55
rust-version = "1.60"
6+
description = "Internal private common code for crate \"spdlog-rs\""
7+
repository = "https://github.com/SpriteOvO/spdlog-rs"
8+
license = "MIT OR Apache-2.0"
9+
readme = "crates-io.md"
10+
keywords = ["spdlog", "log", "logging"]
11+
categories = ["development-tools::debugging"]
612

713
[dependencies]
814
nom = "7.1.3"

spdlog-internal/crates-io.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# spdlog-internal
2+
3+
Internal private common code for crate [`spdlog-rs`].
4+
5+
`spdlog-internal` should never be used as a standalone dependency, use [`spdlog-rs`] instead.
6+
7+
[`spdlog-rs`]: https://crates.io/crates/spdlog-rs

spdlog-internal/src/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
//! Internal private common code for crate [`spdlog-rs`].
2+
//!
3+
//! `spdlog-macros` should never be used as a standalone dependency, use
4+
//! [`spdlog-rs`] instead.
5+
//!
6+
//! [`spdlog-rs`]: https://crates.io/crates/spdlog-rs
7+
18
pub mod pattern_parser;
29

310
#[macro_export]

0 commit comments

Comments
 (0)