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 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/crates/proc-macro-srv/Cargo.toml b/crates/proc-macro-srv/Cargo.toml new file mode 100644 index 0000000000..01bc8878bb --- /dev/null +++ b/crates/proc-macro-srv/Cargo.toml @@ -0,0 +1,32 @@ +[package] +name = "proc-macro-srv" +version = "0.0.0" +description = "TBD" +license = "MIT OR Apache-2.0" +edition = "2021" +rust-version = "1.57" + +[lib] +doctest = false + +[dependencies] +object = { version = "0.28.3", default-features = false, features = [ + "std", + "read_core", + "elf", + "macho", + "pe", +] } +libloading = "0.7.3" +memmap2 = "0.5.3" + +tt = { path = "../tt", version = "0.0.0" } +mbe = { path = "../mbe", version = "0.0.0" } +paths = { path = "../paths", version = "0.0.0" } +proc-macro-api = { path = "../proc-macro-api", version = "0.0.0" } + +[dev-dependencies] +expect-test = "1.2.2" + +# used as proc macro test targets +proc-macro-test = { path = "../proc-macro-test" } |