Skip to content

Commit 2841e2d

Browse files
committed
Bump to v0.1.2
1 parent 1551303 commit 2841e2d

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ members = [
88
]
99

1010
[workspace.package]
11-
version = "0.1.1"
11+
version = "0.1.2"
12+
edition = "2021"
1213
authors = ["Yuekai Jia <equation618@gmail.com>"]
1314
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
1415
homepage = "https://github.com/arceos-org/arceos"

axfs_devfs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "axfs_devfs"
3-
edition = "2021"
43
description = "Device filesystem used by ArceOS"
54
documentation = "https://docs.rs/axfs_devfs"
65
keywords = ["arceos", "filesystem", "devfs"]
6+
edition.workspace = true
77
version.workspace = true
88
authors.workspace = true
99
license.workspace = true

axfs_devfs/src/dir.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ impl VfsNodeOps for DirNode {
8888
}
8989

9090
fn create(&self, path: &str, ty: VfsNodeType) -> VfsResult {
91-
log::debug!("create {:?} at devfs: {}", ty, path);
91+
log::debug!("create {ty:?} at devfs: {path}");
9292
let (name, rest) = split_path(path);
9393
if let Some(rest) = rest {
9494
match name {
@@ -109,7 +109,7 @@ impl VfsNodeOps for DirNode {
109109
}
110110

111111
fn remove(&self, path: &str) -> VfsResult {
112-
log::debug!("remove at devfs: {}", path);
112+
log::debug!("remove at devfs: {path}");
113113
let (name, rest) = split_path(path);
114114
if let Some(rest) = rest {
115115
match name {

axfs_ramfs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "axfs_ramfs"
3-
edition = "2021"
43
description = "RAM filesystem used by ArceOS"
54
documentation = "https://docs.rs/axfs_ramfs"
65
keywords = ["arceos", "filesystem", "ramfs"]
6+
edition.workspace = true
77
version.workspace = true
88
authors.workspace = true
99
license.workspace = true

axfs_ramfs/src/dir.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ impl DirNode {
4343
/// Creates a new node with the given name and type in this directory.
4444
pub fn create_node(&self, name: &str, ty: VfsNodeType) -> VfsResult {
4545
if self.exist(name) {
46-
log::error!("AlreadyExists {}", name);
46+
log::error!("AlreadyExists {name}");
4747
return Err(VfsError::AlreadyExists);
4848
}
4949
let node: VfsNodeRef = match ty {
@@ -118,7 +118,7 @@ impl VfsNodeOps for DirNode {
118118
}
119119

120120
fn create(&self, path: &str, ty: VfsNodeType) -> VfsResult {
121-
log::debug!("create {:?} at ramfs: {}", ty, path);
121+
log::debug!("create {ty:?} at ramfs: {path}");
122122
let (name, rest) = split_path(path);
123123
if let Some(rest) = rest {
124124
match name {
@@ -142,7 +142,7 @@ impl VfsNodeOps for DirNode {
142142
}
143143

144144
fn remove(&self, path: &str) -> VfsResult {
145-
log::debug!("remove at ramfs: {}", path);
145+
log::debug!("remove at ramfs: {path}");
146146
let (name, rest) = split_path(path);
147147
if let Some(rest) = rest {
148148
match name {

axfs_vfs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "axfs_vfs"
3-
edition = "2021"
43
description = "Virtual filesystem interfaces used by ArceOS"
54
documentation = "https://docs.rs/axfs_vfs"
65
keywords = ["arceos", "filesystem", "vfs"]
6+
edition.workspace = true
77
version.workspace = true
88
authors.workspace = true
99
license.workspace = true

0 commit comments

Comments
 (0)