2020-03-18 04:47:59 -05:00
|
|
|
[package]
|
2022-04-29 09:29:24 -05:00
|
|
|
name = "proc-macro-api"
|
2020-08-13 10:42:52 -05:00
|
|
|
version = "0.0.0"
|
2020-08-24 06:06:30 -05:00
|
|
|
description = "TBD"
|
2023-02-13 05:55:14 -06:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-03-18 04:47:59 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-05 05:00:21 -06:00
|
|
|
object.workspace = true
|
2023-06-05 04:04:23 -05:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json = { workspace = true, features = ["unbounded_depth"] }
|
2023-11-15 05:00:32 -06:00
|
|
|
tracing.workspace = true
|
2023-06-05 04:04:23 -05:00
|
|
|
triomphe.workspace = true
|
2024-02-01 09:16:38 -06:00
|
|
|
rustc-hash.workspace = true
|
2022-06-10 09:30:09 -05:00
|
|
|
memmap2 = "0.5.4"
|
2023-02-13 05:55:14 -06:00
|
|
|
snap = "1.1.0"
|
2023-11-28 09:28:51 -06:00
|
|
|
indexmap = "2.1.0"
|
2020-08-13 05:07:28 -05:00
|
|
|
|
2023-02-13 05:55:14 -06:00
|
|
|
# local deps
|
|
|
|
paths.workspace = true
|
|
|
|
tt.workspace = true
|
|
|
|
stdx.workspace = true
|
2023-09-29 05:37:57 -05:00
|
|
|
text-size.workspace = true
|
2023-12-18 06:30:41 -06:00
|
|
|
span.workspace = true
|
2023-11-28 09:28:51 -06: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 08:22:29 -06:00
|
|
|
|
|
|
|
[lints]
|
2024-02-01 09:16:38 -06:00
|
|
|
workspace = true
|