Skip to content

Commit

Permalink
Cargo toml formatting improvements
Browse files Browse the repository at this point in the history
To be more consistent.
  • Loading branch information
stevenengler committed Mar 11, 2024
1 parent 5c24aca commit 043fde2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/lib/linux-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ log = { version = "0.4.20", default-features = false }
shadow-pod = { path = "../pod" }
static_assertions = "1.1.0"
vasi = { path = "../vasi" }
num_enum = { version = "0.7.1", default-features=false }
num_enum = { version = "0.7.1", default-features = false }
memoffset = "0.9.0"
bytemuck = "1.14.0"
linux-syscall = "1.0.0"
linux-errno = "1.0.1"
naked-function = "0.1.5"
linux-raw-sys = "0.6.3"
rustix = { optional=true, version = "0.38.28", default-features=false, features = ["process"] }
rustix = { optional = true, version = "0.38.28", default-features = false, features = ["process"] }

[dev-dependencies]
rustix = { version = "0.38.28", default-features=false, features = ["thread", "process", "time"] }
Expand Down
10 changes: 5 additions & 5 deletions src/lib/vasi-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
num_enum = { version = "0.7.1", default-features=false }
rustix = { version = "0.38.28", default-features = false, features=["fs", "thread", "process"] }
num_enum = { version = "0.7.1", default-features = false }
rustix = { version = "0.38.28", default-features = false, features = ["fs", "thread", "process"] }
static_assertions = "1.1.0"
vasi = { path = "../vasi" }
rustc-hash = { version = "1.1.0", default-features=false }
rustc-hash = { version = "1.1.0", default-features = false }

[dev-dependencies]
criterion = "0.5.1"
rand = "0.8.5"
rustix = { version = "0.38.28", default-features = false, features=["process"] }
rustix = { version = "0.38.28", default-features = false, features = ["process"] }
libc = "0.2"
nix = "0.27.1"
nix = "0.27.1"

[target.'cfg(loom)'.dependencies]
loom = { version = "0.7", features = ["checkpoint"] }
Expand Down
4 changes: 2 additions & 2 deletions src/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ libc = "0.2"
linux-api = { path = "../lib/linux-api", features = ["rustix", "std"] }
neli = "0.6.4"
nix = { version = "0.26.4", features = ["event", "feature", "fs", "poll", "process", "sched", "signal", "socket", "uio"] }
rand = { version="0.8.5", features=["small_rng"] }
rustix = { version = "0.38.28", default-features=false, features=["fs", "mm", "pipe", "time", "thread"]}
rand = { version = "0.8.5", features = ["small_rng"] }
rustix = { version = "0.38.28", default-features = false, features = ["fs", "mm", "pipe", "time", "thread"] }
signal-hook = "0.3.17"
once_cell = "1.19.0"
vasi-sync = { path = "../lib/vasi-sync" }
Expand Down

0 comments on commit 043fde2

Please sign in to comment.