2020-03-18 09:47:59 +00:00
|
|
|
[package]
|
2022-04-29 14:29:24 +00:00
|
|
|
name = "proc-macro-api"
|
2020-08-13 15:42:52 +00:00
|
|
|
version = "0.0.0"
|
2020-08-24 11:06:30 +00:00
|
|
|
description = "TBD"
|
2023-01-16 15:41:47 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 15:33:01 +00:00
|
|
|
rust-version.workspace = true
|
2020-03-18 09:47:59 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-03 07:14:48 +00:00
|
|
|
object = { version = "0.29.0", default-features = false, features = [
|
2021-12-19 17:00:42 +00:00
|
|
|
"std",
|
|
|
|
"read_core",
|
|
|
|
"elf",
|
|
|
|
"macho",
|
|
|
|
"pe",
|
|
|
|
] }
|
2022-06-10 14:30:09 +00:00
|
|
|
serde = { version = "1.0.137", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.81", features = ["unbounded_depth"] }
|
2022-10-08 18:30:04 +00:00
|
|
|
tracing = "0.1.37"
|
2022-06-10 14:30:09 +00:00
|
|
|
memmap2 = "0.5.4"
|
2022-03-22 16:36:41 +00:00
|
|
|
snap = "1.0.5"
|
2020-08-13 10:07:28 +00:00
|
|
|
|
2023-01-17 09:52:26 +00:00
|
|
|
# local deps
|
|
|
|
paths.workspace = true
|
|
|
|
tt.workspace = true
|
|
|
|
stdx.workspace = true
|
|
|
|
profile.workspace = true
|
2021-08-22 11:05:12 +00:00
|
|
|
# Intentionally *not* depend on anything salsa-related
|
2023-01-17 09:52:26 +00:00
|
|
|
# base-db.workspace = true
|