-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix time on x86_64 macos (#189)
* fix time on x86_64 macos Signed-off-by: Runji Wang <[email protected]> * add path to madsim deps Signed-off-by: Runji Wang <[email protected]> * update deps for madsim Signed-off-by: Runji Wang <[email protected]> --------- Signed-off-by: Runji Wang <[email protected]>
- Loading branch information
1 parent
fdb1d56
commit 4d77c98
Showing
6 changed files
with
20 additions
and
17 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
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
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
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 = "madsim" | ||
version = "0.2.23" | ||
version = "0.2.24" | ||
edition = "2021" | ||
authors = ["Runji Wang <[email protected]>"] | ||
description = "Deterministic Simulator for distributed systems." | ||
|
@@ -32,8 +32,8 @@ tracing = "0.1" | |
tracing-subscriber = "0.3" | ||
|
||
[target.'cfg(madsim)'.dependencies] | ||
ahash = "0.7" | ||
async-channel = "1.6" | ||
ahash = "0.8" | ||
async-channel = "2" | ||
async-stream = "0.3" | ||
async-task = "4.4" | ||
downcast-rs = "1.2" | ||
|
@@ -43,7 +43,7 @@ panic-message = "0.3" | |
rand_xoshiro = "0.6" | ||
rustversion = "1" | ||
tokio = { version = "1", features = ["rt", "sync"] } | ||
toml = "0.7" | ||
toml = "0.8" | ||
|
||
[target.'cfg(not(madsim))'.dependencies] | ||
async-ucx = { version = "0.1", features = ["event"], optional = true } | ||
|
@@ -60,7 +60,7 @@ tokio-util = { version = "0.7", features = ["codec"] } | |
# mad_rpc = { git = "https://github.com/madsys-dev/madrpc", rev = "2be4b02", optional = true } | ||
|
||
[dev-dependencies] | ||
criterion = "0.4" | ||
criterion = "0.5" | ||
structopt = "0.3" | ||
tokio = { version = "1", features = ["rt-multi-thread", "macros"] } | ||
|
||
|
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
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