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"
|
2020-08-24 13:06:30 +02:00
|
|
|
description = "TBD"
|
2023-02-13 13:55:14 +02:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-03-18 17:47:59 +08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-14 22:57:38 +08:00
|
|
|
object = { version = "0.32.0", default-features = false, features = [
|
2021-12-19 19:00:42 +02:00
|
|
|
"std",
|
|
|
|
"read_core",
|
|
|
|
"elf",
|
|
|
|
"macho",
|
|
|
|
"pe",
|
|
|
|
] }
|
2023-06-05 12:04:23 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json = { workspace = true, features = ["unbounded_depth"] }
|
2023-11-15 13:00:32 +02:00
|
|
|
tracing.workspace = true
|
2023-06-05 12:04:23 +03:00
|
|
|
triomphe.workspace = true
|
2024-02-01 16:16:38 +01:00
|
|
|
rustc-hash.workspace = true
|
2022-06-10 16:30:09 +02:00
|
|
|
memmap2 = "0.5.4"
|
2023-02-13 13:55:14 +02:00
|
|
|
snap = "1.1.0"
|
2023-11-28 16:28:51 +01:00
|
|
|
indexmap = "2.1.0"
|
2020-08-13 12:07:28 +02:00
|
|
|
|
2023-02-13 13:55:14 +02:00
|
|
|
# local deps
|
|
|
|
paths.workspace = true
|
|
|
|
tt.workspace = true
|
|
|
|
stdx.workspace = true
|
|
|
|
profile.workspace = true
|
2023-09-29 12:37:57 +02:00
|
|
|
text-size.workspace = true
|
2023-12-18 13:30:41 +01:00
|
|
|
span.workspace = true
|
2023-11-28 16:28:51 +01:00
|
|
|
# Ideally this crate would not depend on salsa things, but we need span information here which wraps
|
|
|
|
# InternIds for the syntax context
|
|
|
|
base-db.workspace = true
|
|
|
|
la-arena.workspace = true
|
2023-12-29 23:22:29 +09:00
|
|
|
|
|
|
|
[lints]
|
2024-02-01 16:16:38 +01:00
|
|
|
workspace = true
|