Skip to content

Commit 6a8b2a9

Browse files
committed
feat: v0.26.13
1 parent be175b3 commit 6a8b2a9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "std-macro-extensions"
3-
version = "0.26.12"
3+
version = "0.26.13"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

src/cin/macro.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
#[macro_export]
66
macro_rules! cin {
77
() => {{
8-
use std::io::{self};
98
let mut input: String = String::new();
10-
let _ = io::stdin().read_line(&mut input);
9+
let _ = std::io::stdin().read_line(&mut input);
1110
input
1211
}};
1312
}

0 commit comments

Comments
 (0)