Skip to content

Commit b08f7fa

Browse files
committed
🔧 Fixed Dependencies
1 parent ed5a4f6 commit b08f7fa

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "console-utils"
3-
version = "1.5.8"
3+
version = "1.5.9"
44
edition = "2021"
55
authors = ["Nils Wrenger <[email protected]>"]
66
description = "Simple CLI Input and Control Utilities"
@@ -17,6 +17,7 @@ version = "0.2.150"
1717

1818
[target.'cfg(windows)'.dependencies.windows-sys]
1919
version = "0.52.0"
20+
default-features = false
2021
features = [
2122
"Win32_Foundation",
2223
"Win32_System_Console",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use Console Utils in your Rust project, you can add the following dependency
1717

1818
```toml
1919
[dependencies]
20-
console-utils = "1.5.8"
20+
console-utils = "1.5.9"
2121
```
2222

2323
After adding the dependency, you can import the modules you need in your Rust code. For example:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! ```toml
1010
//! [dependencies]
11-
//! console-utils = "1.5.8"
11+
//! console-utils = "1.5.9"
1212
//! ```
1313
//!
1414
//! After adding the dependency, you can import the modules you need in your Rust code. For example:

0 commit comments

Comments
 (0)