-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97ff12e
commit 4747d7d
Showing
10 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-std-workspace" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Capability-based version of the Rust standard library" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -19,13 +19,13 @@ rust-version = "1.63" | |
[dev-dependencies] | ||
async-std = { version = "1.13.0", features = ["attributes", "io_safety"] } | ||
anyhow = "1.0.37" | ||
cap-async-std = { path = "cap-async-std", version = "3.4.1" } | ||
cap-fs-ext = { path = "cap-fs-ext", version = "3.4.1" } | ||
cap-net-ext = { path = "cap-net-ext", version = "3.4.1" } | ||
cap-directories = { path = "cap-directories", version = "3.4.1" } | ||
cap-std = { path = "cap-std", version = "3.4.1" } | ||
cap-tempfile = { path = "cap-tempfile", version = "3.4.1" } | ||
cap-rand = { path = "cap-rand", version = "3.4.1" } | ||
cap-async-std = { path = "cap-async-std", version = "3.4.2" } | ||
cap-fs-ext = { path = "cap-fs-ext", version = "3.4.2" } | ||
cap-net-ext = { path = "cap-net-ext", version = "3.4.2" } | ||
cap-directories = { path = "cap-directories", version = "3.4.2" } | ||
cap-std = { path = "cap-std", version = "3.4.2" } | ||
cap-tempfile = { path = "cap-tempfile", version = "3.4.2" } | ||
cap-rand = { path = "cap-rand", version = "3.4.2" } | ||
rand = "0.8.1" | ||
tempfile = "3.1.0" | ||
camino = "1.0.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-async-std" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Capability-based version of async-std" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ edition = "2021" | |
[dependencies] | ||
arf-strings = { version = "0.7.0", optional = true } | ||
async-std = { version = "1.13.0", features = ["attributes", "io_safety"] } | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" } | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.2" } | ||
io-lifetimes = { version = "2.0.0", default-features = false, features = ["async-std"] } | ||
io-extras = { version = "0.18.3", features = ["use_async_std"] } | ||
camino = { version = "1.0.5", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-directories" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Capability-based standard directories for config, cache and other data" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std" | |
edition = "2021" | ||
|
||
[dependencies] | ||
cap-std = { path = "../cap-std", version = "^3.4.1" } | ||
cap-std = { path = "../cap-std", version = "^3.4.2" } | ||
directories-next = "2.0.0" | ||
|
||
[target.'cfg(not(windows))'.dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-fs-ext" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Extension traits for `Dir`, `File`, etc." | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -14,9 +14,9 @@ edition = "2021" | |
|
||
[dependencies] | ||
arf-strings = { version = "0.7.0", optional = true } | ||
cap-async-std = { path = "../cap-async-std", optional = true, version = "3.4.1" } | ||
cap-std = { path = "../cap-std", optional = true, version = "3.4.1" } | ||
cap-primitives = { path = "../cap-primitives", version = "3.4.1" } | ||
cap-async-std = { path = "../cap-async-std", optional = true, version = "3.4.2" } | ||
cap-std = { path = "../cap-std", optional = true, version = "3.4.2" } | ||
cap-primitives = { path = "../cap-primitives", version = "3.4.2" } | ||
io-lifetimes = { version = "2.0.0", default-features = false } | ||
async-std = { version = "1.13.0", features = ["io_safety", "attributes"], optional = true } | ||
async-trait = { version = "0.1.42", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-net-ext" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Extension traits for `TcpListener`, `Pool`, etc." | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std" | |
edition = "2021" | ||
|
||
[dependencies] | ||
cap-std = { path = "../cap-std", version = "^3.4.1" } | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" } | ||
cap-std = { path = "../cap-std", version = "^3.4.2" } | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.2" } | ||
rustix = { version = "0.38.0", features = ["net"] } | ||
smallvec = "1.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-primitives" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Capability-based primitives" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-rand" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Capability-based random number generators" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-std" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Capability-based version of the Rust standard library" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -18,7 +18,7 @@ rustdoc-args = ["--cfg=docsrs"] | |
|
||
[dependencies] | ||
arf-strings = { version = "0.7.0", optional = true } | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" } | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.2" } | ||
io-extras = "0.18.3" | ||
io-lifetimes = { version = "2.0.0", default-features = false } | ||
camino = { version = "1.0.5", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-tempfile" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Capability-based temporary directories" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std" | |
edition = "2021" | ||
|
||
[dependencies] | ||
cap-std = { path = "../cap-std", version = "^3.4.1" } | ||
cap-std = { path = "../cap-std", version = "^3.4.2" } | ||
uuid = { version = "1.0.0", features = ["v4"] } | ||
camino = { version = "1.0.5", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cap-time-ext" | ||
version = "3.4.1" | ||
version = "3.4.2" | ||
description = "Extension traits for `SystemClock` and `MonotonicClock`" | ||
authors = [ | ||
"Dan Gohman <[email protected]>", | ||
|
@@ -14,8 +14,8 @@ edition = "2021" | |
|
||
[dependencies] | ||
ambient-authority = "0.0.2" | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.1" } | ||
cap-std = { path = "../cap-std", optional = true, version = "^3.4.1" } | ||
cap-primitives = { path = "../cap-primitives", version = "^3.4.2" } | ||
cap-std = { path = "../cap-std", optional = true, version = "^3.4.2" } | ||
iana-time-zone = "0.1.57" | ||
|
||
[target.'cfg(not(windows))'.dependencies] | ||
|