File tree Expand file tree Collapse file tree 9 files changed +24
-24
lines changed
Expand file tree Collapse file tree 9 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " cap-std-workspace"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Capability-based version of the Rust standard library"
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
@@ -18,12 +18,12 @@ rust-version = "1.70"
1818
1919[dev-dependencies ]
2020anyhow = " 1.0.37"
21- cap-fs-ext = { path = " cap-fs-ext" , version = " 3.4.5 " }
22- cap-net-ext = { path = " cap-net-ext" , version = " 3.4.5 " }
23- cap-directories = { path = " cap-directories" , version = " 3.4.5 " }
24- cap-std = { path = " cap-std" , version = " 3.4.5 " }
25- cap-tempfile = { path = " cap-tempfile" , version = " 3.4.5 " }
26- cap-rand = { path = " cap-rand" , version = " 3.4.5 " }
21+ cap-fs-ext = { path = " cap-fs-ext" , version = " 4.0.0 " }
22+ cap-net-ext = { path = " cap-net-ext" , version = " 4.0.0 " }
23+ cap-directories = { path = " cap-directories" , version = " 4.0.0 " }
24+ cap-std = { path = " cap-std" , version = " 4.0.0 " }
25+ cap-tempfile = { path = " cap-tempfile" , version = " 4.0.0 " }
26+ cap-rand = { path = " cap-rand" , version = " 4.0.0 " }
2727rand = " 0.9.2"
2828tempfile = " 3.1.0"
2929camino = " 1.0.5"
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-directories"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Capability-based standard directories for config, cache and other data"
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
1313edition = " 2021"
1414
1515[dependencies ]
16- cap-std = { path = " ../cap-std" , version = " ^3.4.5 " }
16+ cap-std = { path = " ../cap-std" , version = " ^4.0.0 " }
1717directories-next = " 2.0.0"
1818
1919[target .'cfg(not(windows))' .dependencies ]
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-fs-ext"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Extension traits for `Dir`, `File`, etc."
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
@@ -14,8 +14,8 @@ edition = "2021"
1414
1515[dependencies ]
1616arf-strings = { version = " 0.7.0" , optional = true }
17- cap-std = { path = " ../cap-std" , optional = true , version = " 3.4.5 " }
18- cap-primitives = { path = " ../cap-primitives" , version = " 3.4.5 " }
17+ cap-std = { path = " ../cap-std" , optional = true , version = " 4.0.0 " }
18+ cap-primitives = { path = " ../cap-primitives" , version = " 4.0.0 " }
1919io-lifetimes = { version = " 3.0.1" , default-features = false }
2020camino = { version = " 1.0.5" , optional = true }
2121
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-net-ext"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Extension traits for `TcpListener`, `Pool`, etc."
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
1313edition = " 2021"
1414
1515[dependencies ]
16- cap-std = { path = " ../cap-std" , version = " ^3.4.5 " }
17- cap-primitives = { path = " ../cap-primitives" , version = " ^3.4.5 " }
16+ cap-std = { path = " ../cap-std" , version = " ^4.0.0 " }
17+ cap-primitives = { path = " ../cap-primitives" , version = " ^4.0.0 " }
1818rustix = { version = " 1.0.0" , features = [" net" ] }
1919smallvec = " 1.10"
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-primitives"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Capability-based primitives"
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-rand"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Capability-based random number generators"
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-std"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Capability-based version of the Rust standard library"
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
@@ -18,7 +18,7 @@ rustdoc-args = ["--cfg=docsrs"]
1818
1919[dependencies ]
2020arf-strings = { version = " 0.7.0" , optional = true }
21- cap-primitives = { path = " ../cap-primitives" , version = " ^3.4.5 " }
21+ cap-primitives = { path = " ../cap-primitives" , version = " ^4.0.0 " }
2222io-extras = " 0.19.0"
2323io-lifetimes = { version = " 3.0.1" , default-features = false }
2424camino = { version = " 1.0.5" , optional = true }
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-tempfile"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Capability-based temporary directories"
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
@@ -13,7 +13,7 @@ repository = "https://github.com/bytecodealliance/cap-std"
1313edition = " 2021"
1414
1515[dependencies ]
16- cap-std = { path = " ../cap-std" , version = " ^3.4.5 " }
16+ cap-std = { path = " ../cap-std" , version = " ^4.0.0 " }
1717uuid = { version = " 1.0.0" , features = [" v4" ] }
1818camino = { version = " 1.0.5" , optional = true }
1919
Original file line number Diff line number Diff line change 11[package ]
22name = " cap-time-ext"
3- version = " 3.4.5 "
3+ version = " 4.0.0 "
44description = " Extension traits for `SystemClock` and `MonotonicClock`"
55authors = [
66 " Dan Gohman <dev@sunfishcode.online>" ,
@@ -14,8 +14,8 @@ edition = "2021"
1414
1515[dependencies ]
1616ambient-authority = " 0.0.2"
17- cap-primitives = { path = " ../cap-primitives" , version = " ^3.4.5 " }
18- cap-std = { path = " ../cap-std" , optional = true , version = " ^3.4.5 " }
17+ cap-primitives = { path = " ../cap-primitives" , version = " ^4.0.0 " }
18+ cap-std = { path = " ../cap-std" , optional = true , version = " ^4.0.0 " }
1919iana-time-zone = " 0.1.57"
2020
2121[target .'cfg(not(windows))' .dependencies ]
You can’t perform that action at this time.
0 commit comments