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-02-13 11:55:14 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-03-18 09:47:59 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-10 14:30:09 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json = { workspace = true, features = ["unbounded_depth"] }
|
2023-11-15 11:00:32 +00:00
|
|
|
tracing.workspace = true
|
2023-02-13 11:55:14 +00:00
|
|
|
triomphe.workspace = true
|
2024-02-01 15:16:38 +00:00
|
|
|
rustc-hash.workspace = true
|
2024-06-30 13:05:35 +00:00
|
|
|
indexmap.workspace = true
|
2020-08-13 10:07:28 +00:00
|
|
|
|
2023-02-13 11:55:14 +00:00
|
|
|
# local deps
|
2024-03-19 12:05:50 +00:00
|
|
|
paths = { workspace = true, features = ["serde1"] }
|
2023-02-13 11:55:14 +00:00
|
|
|
tt.workspace = true
|
|
|
|
stdx.workspace = true
|
2023-09-29 10:37:57 +00:00
|
|
|
text-size.workspace = true
|
2023-12-18 12:30:41 +00:00
|
|
|
span.workspace = true
|
2023-11-28 15:28:51 +00: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 14:22:29 +00:00
|
|
|
|
|
|
|
[lints]
|
2024-02-01 15:16:38 +00:00
|
|
|
workspace = true
|