32 lines
794 B
TOML
Raw Normal View History

2020-03-18 17:47:59 +08:00
[package]
2022-04-29 14:29:24 +00:00
name = "proc-macro-api"
2020-08-13 17:42:52 +02:00
version = "0.0.0"
description = "TBD"
2020-07-14 10:57:26 +09:00
license = "MIT OR Apache-2.0"
2021-10-21 17:49:28 +02:00
edition = "2021"
2021-12-16 01:49:48 +05:00
rust-version = "1.57"
2020-03-18 17:47:59 +08:00
[lib]
doctest = false
[dependencies]
2022-06-10 16:30:09 +02:00
object = { version = "0.28.4", default-features = false, features = [
2021-12-19 19:00:42 +02:00
"std",
"read_core",
"elf",
"macho",
"pe",
] }
2022-06-10 16:30:09 +02:00
serde = { version = "1.0.137", features = ["derive"] }
serde_json = { version = "1.0.81", features = ["unbounded_depth"] }
tracing = "0.1.35"
memmap2 = "0.5.4"
2022-03-22 17:36:41 +01:00
snap = "1.0.5"
2020-08-13 12:07:28 +02:00
paths = { path = "../paths", version = "0.0.0" }
2020-08-24 10:25:19 +02:00
tt = { path = "../tt", version = "0.0.0" }
2021-02-01 21:24:09 +02:00
stdx = { path = "../stdx", version = "0.0.0" }
profile = { path = "../profile", version = "0.0.0" }
# Intentionally *not* depend on anything salsa-related
2022-04-29 14:29:24 +00:00
# base-db = { path = "../base-db", version = "0.0.0" }