Skip to content

Commit 92abd9c

Browse files
committed
feat: v0.5.7
1 parent d3e405f commit 92abd9c

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
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 = "file-operation"
3-
version = "0.5.6"
3+
version = "0.5.7"
44
edition = "2024"
55
authors = ["ltpp-universe <[email protected]>"]
66
license = "MIT"

src/file/impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use super::r#type::FileDataString;
1+
use super::r#struct::FileDataString;
22
use std::fmt;
33

44
impl From<Vec<u8>> for FileDataString {

src/file/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ pub(crate) mod delete;
44
pub(crate) mod r#impl;
55
pub(crate) mod r#move;
66
pub(crate) mod read;
7-
pub(crate) mod r#type;
7+
pub(crate) mod r#struct;
88
pub(crate) mod write;
File renamed without changes.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ pub use file::{
55
delete::{r#async::*, sync::*},
66
r#move::{r#async::*, sync::*},
77
read::{r#async::*, sync::*},
8-
r#type::*,
8+
r#struct::*,
99
write::{r#async::*, sync::*},
1010
};

0 commit comments

Comments
 (0)