]> git.lizzy.rs Git - rust.git/blob - crates/proc_macro_api/Cargo.toml
Bump MSRV (1.57)
[rust.git] / crates / proc_macro_api / Cargo.toml
1 [package]
2 name = "proc_macro_api"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 edition = "2021"
7 rust-version = "1.57"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 serde = { version = "1.0", features = ["derive"] }
14 serde_json = { version = "1.0", features = ["unbounded_depth"] }
15 tracing = "0.1"
16 memmap2 = "0.5"
17 snap = "1.0"
18
19 paths = { path = "../paths", version = "0.0.0" }
20 tt = { path = "../tt", version = "0.0.0" }
21 stdx = { path = "../stdx", version = "0.0.0" }
22 profile = { path = "../profile", version = "0.0.0" }
23 # Intentionally *not* depend on anything salsa-related
24 # base_db = { path = "../base_db", version = "0.0.0" }
25
26 [dependencies.object]
27 version = "0.27"
28 default-features = false
29 features = ["std", "read_core", "elf", "macho", "pe"]