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

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

38 lines
628 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"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
2020-04-01 00:11:26 -05:00
[lib]
doctest = false
[dependencies]
2023-01-21 01:48:38 -06:00
object = { version = "0.30.2", 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
tt.workspace = true
mbe.workspace = true
paths.workspace = true
proc-macro-api.workspace = true
2020-04-01 00:11:26 -05:00
[dev-dependencies]
expect-test = "1.4.0"
# used as proc macro test targets
proc-macro-test.workspace = true
[features]
sysroot-abi = []