rust/crates/proc-macro-api/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
794 B
TOML
Raw Normal View History

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"
description = "TBD"
2020-07-13 20:57:26 -05:00
license = "MIT OR Apache-2.0"
2021-10-21 10:49:28 -05:00
edition = "2021"
2021-12-15 14:49:48 -06:00
rust-version = "1.57"
2020-03-18 04:47:59 -05:00
[lib]
doctest = false
[dependencies]
2022-03-22 11:36:41 -05:00
object = { version = "0.28.3", default-features = false, features = [
2021-12-19 11:00:42 -06:00
"std",
"read_core",
"elf",
"macho",
"pe",
] }
2022-03-22 11:36:41 -05:00
serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.79", features = ["unbounded_depth"] }
tracing = "0.1.32"
memmap2 = "0.5.3"
snap = "1.0.5"
2020-08-13 05:07:28 -05:00
paths = { path = "../paths", version = "0.0.0" }
2020-08-24 03:25:19 -05:00
tt = { path = "../tt", version = "0.0.0" }
2021-02-01 13:24:09 -06: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 09:29:24 -05:00
# base-db = { path = "../base-db", version = "0.0.0" }