Skip to content

Commit

Permalink
fix: update deps
Browse files Browse the repository at this point in the history
Signed-off-by: YdrMaster <[email protected]>
  • Loading branch information
YdrMaster committed Jul 28, 2023
1 parent be8edae commit 2fdc800
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 84 deletions.
128 changes: 48 additions & 80 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
members = ["rustsbi-qemu", "hsm-cell", "test-kernel", "bench-kernel", "xtask"]
default-members = ["xtask"]
resolver = "2"
2 changes: 1 addition & 1 deletion rustsbi-qemu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
rustsbi = { git = "https://github.com/rustsbi/rustsbi", rev = "91cfa36", features = [
rustsbi = { git = "https://github.com/rustsbi/rustsbi", rev = "8ebabe", features = [
"machine",
] }
sbi-spec = { version = "0.0.6", features = ["legacy"] }
Expand Down
5 changes: 4 additions & 1 deletion rustsbi-qemu/src/dbcn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

use crate::uart16550;
use core::ops::Range;
use rustsbi::{spec::binary::SbiRet, Console, Physical};
use rustsbi::{
spec::binary::{Physical, SbiRet},
Console,
};
use spin::Once;

pub(crate) struct DBCN(Range<usize>);
Expand Down
2 changes: 2 additions & 0 deletions rustsbi-qemu/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,8 @@ type FixedRustSBI<'a> = RustSBI<
&'a qemu_test::QemuTest,
Infallible,
&'a dbcn::DBCN,
Infallible,
Infallible,
>;

struct Hsm;
Expand Down
4 changes: 2 additions & 2 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.2", features = ["derive"] }
clap = { version = "4.3", features = ["derive"] }
os-xtask-utils = "0.0.0"
once_cell = "1.17"
once_cell = "1.18"

0 comments on commit 2fdc800

Please sign in to comment.