Skip to content

Commit

Permalink
Rename sel4-bitfield-types -> sel4-bitfield-ops
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Oct 4, 2023
1 parent 99b70f3 commit 6f8ac12
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ members = [
"crates/sel4-shared-ring-buffer/block-io/types",
"crates/sel4-shared-ring-buffer/smoltcp",
"crates/sel4-sync",
"crates/sel4/bitfield-ops",
"crates/sel4/bitfield-parser",
"crates/sel4/bitfield-parser/test",
"crates/sel4/bitfield-types",
"crates/sel4/build-env",
"crates/sel4/config",
"crates/sel4/config/data",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "sel4-bitfield-types"
name = "sel4-bitfield-ops"
version = "0.1.0"
authors = ["Nick Spinale <[email protected]>"]
edition = "2021"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/sel4/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ wrappers = []

[dependencies]
log = "0.4.17"
sel4-bitfield-types = { path = "../bitfield-types" }
sel4-bitfield-ops = { path = "../bitfield-ops" }
sel4-config = { path = "../config" }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/sel4/sys/src/bf/types.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use core::ops::Range;

use sel4_bitfield_types::{get_bits, set_bits, UnsignedPrimInt};
use sel4_bitfield_ops::{get_bits, set_bits, UnsignedPrimInt};

#[repr(C)]
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
Expand Down
2 changes: 1 addition & 1 deletion crates/sel4/sys/src/ipc_buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use core::mem;
use core::ops::Range;
use core::slice;

use sel4_bitfield_types::{get_bits, set_bits, PrimInt};
use sel4_bitfield_ops::{get_bits, set_bits, PrimInt};

use crate::{seL4_CPtr, seL4_IPCBuffer, seL4_Word};

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{ mk }:

mk {
package.name = "sel4-bitfield-ops";
}

This file was deleted.

2 changes: 1 addition & 1 deletion hacking/cargo-manifest-sources/crates/sel4/sys/crate.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ mk {
};
nix.local.dependencies = with localCrates; [
sel4-config
sel4-bitfield-types
sel4-bitfield-ops
];
nix.local.build-dependencies = with localCrates; [
sel4-build-env
Expand Down

0 comments on commit 6f8ac12

Please sign in to comment.