Skip to content

Commit afd0df7

Browse files
committed
Inherit the same package properties from workspace
1 parent 9a91ddd commit afd0df7

File tree

4 files changed

+26
-18
lines changed

4 files changed

+26
-18
lines changed

Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,11 @@ members = [
55
"spdlog-internal",
66
"spdlog-macros",
77
]
8+
9+
[workspace.package]
10+
edition = "2021"
11+
rust-version = "1.66.1"
12+
repository = "https://github.com/SpriteOvO/spdlog-rs"
13+
license = "MIT OR Apache-2.0"
14+
keywords = ["spdlog", "log", "logging"]
15+
categories = ["development-tools::debugging"]

spdlog-internal/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "spdlog-internal"
33
version = "0.2.0"
4-
edition = "2021"
5-
rust-version = "1.66.1"
64
description = "Internal private common code for crate \"spdlog-rs\""
7-
repository = "https://github.com/SpriteOvO/spdlog-rs"
8-
license = "MIT OR Apache-2.0"
95
readme = "crates-io.md"
10-
keywords = ["spdlog", "log", "logging"]
11-
categories = ["development-tools::debugging"]
6+
edition.workspace = true
7+
rust-version.workspace = true
8+
repository.workspace = true
9+
license.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
1212

1313
[dependencies]
1414
nom = "8.0.0"

spdlog-macros/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "spdlog-macros"
33
version = "0.3.0"
4-
edition = "2021"
5-
rust-version = "1.66.1"
64
description = "Macros implementation of crate \"spdlog-rs\""
7-
repository = "https://github.com/SpriteOvO/spdlog-rs"
8-
license = "MIT OR Apache-2.0"
95
readme = "crates-io.md"
10-
keywords = ["spdlog", "log", "logging"]
11-
categories = ["development-tools::debugging"]
6+
edition.workspace = true
7+
rust-version.workspace = true
8+
repository.workspace = true
9+
license.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
1212

1313
[lib]
1414
proc-macro = true

spdlog/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "spdlog-rs"
33
version = "0.5.1"
4-
edition = "2021"
5-
rust-version = "1.66.1"
64
description = "Fast, highly configurable Rust logging crate, inspired by the C++ logging library spdlog"
7-
repository = "https://github.com/SpriteOvO/spdlog-rs"
8-
license = "MIT OR Apache-2.0"
9-
keywords = ["spdlog", "log", "logging"]
10-
categories = ["development-tools::debugging"]
115
exclude = ["/benches"]
6+
edition.workspace = true
7+
rust-version.workspace = true
8+
repository.workspace = true
9+
license.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
1212

1313
[package.metadata.docs.rs]
1414
all-features = true

0 commit comments

Comments
 (0)