rust/crates/proc-macro-srv/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
716 B
TOML
Raw Normal View History

2020-04-01 00:11:26 -05:00
[package]
2022-04-29 09:29:24 -05:00
name = "proc-macro-srv"
version = "0.0.0"
description = "TBD"
2020-07-13 20:57:26 -05:00
license = "MIT OR Apache-2.0"
2021-10-21 10:49:28 -05:00
edition = "2021"
2021-12-15 14:49:48 -06:00
rust-version = "1.57"
2020-04-01 00:11:26 -05:00
[lib]
doctest = false
[dependencies]
2022-07-03 02:14:48 -05:00
object = { version = "0.29.0", default-features = false, features = [
2021-07-31 03:25:03 -05:00
"std",
"read_core",
"elf",
"macho",
"pe",
] }
2022-03-22 11:36:41 -05:00
libloading = "0.7.3"
2022-06-10 09:30:09 -05:00
memmap2 = "0.5.4"
2020-08-13 03:04:37 -05:00
2020-08-24 03:25:19 -05:00
tt = { path = "../tt", version = "0.0.0" }
mbe = { path = "../mbe", version = "0.0.0" }
paths = { path = "../paths", version = "0.0.0" }
2022-04-29 09:29:24 -05:00
proc-macro-api = { path = "../proc-macro-api", version = "0.0.0" }
2020-04-01 00:11:26 -05:00
[dev-dependencies]
expect-test = "1.4.0"
# used as proc macro test targets
2022-04-29 09:29:24 -05:00
proc-macro-test = { path = "../proc-macro-test" }
[features]
sysroot-abi = []