Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/proc_macro_srv/Cargo.toml')
| -rw-r--r-- | crates/proc_macro_srv/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/proc_macro_srv/Cargo.toml b/crates/proc_macro_srv/Cargo.toml index 28e759cd87..381d241b86 100644 --- a/crates/proc_macro_srv/Cargo.toml +++ b/crates/proc_macro_srv/Cargo.toml @@ -10,15 +10,15 @@ rust-version = "1.57" doctest = false [dependencies] -object = { version = "0.28", default-features = false, features = [ +object = { version = "0.28.3", default-features = false, features = [ "std", "read_core", "elf", "macho", "pe", ] } -libloading = "0.7.0" -memmap2 = "0.5" +libloading = "0.7.3" +memmap2 = "0.5.3" tt = { path = "../tt", version = "0.0.0" } mbe = { path = "../mbe", version = "0.0.0" } @@ -26,7 +26,7 @@ paths = { path = "../paths", version = "0.0.0" } proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" } [dev-dependencies] -expect-test = "1.2.0-pre.1" +expect-test = "1.2.2" # used as proc macro test targets proc_macro_test = { path = "../proc_macro_test" } |