mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 17:28:09 +00:00
f46731a230
11028: Bump MSRV (1.57) r=Veykril a=iDawer This bumps MSRV on all crates to 1.57 except `la-arena` #10986 requires >=1.57 Co-authored-by: iDawer <ilnur.iskhakov.oss@outlook.com>
32 lines
689 B
TOML
32 lines
689 B
TOML
[package]
|
|
name = "proc_macro_srv"
|
|
version = "0.0.0"
|
|
description = "TBD"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
object = { version = "0.28", default-features = false, features = [
|
|
"std",
|
|
"read_core",
|
|
"elf",
|
|
"macho",
|
|
"pe",
|
|
] }
|
|
libloading = "0.7.0"
|
|
memmap2 = "0.5"
|
|
|
|
tt = { path = "../tt", version = "0.0.0" }
|
|
mbe = { path = "../mbe", version = "0.0.0" }
|
|
paths = { path = "../paths", version = "0.0.0" }
|
|
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
|
|
|
|
[dev-dependencies]
|
|
expect-test = "1.2.0-pre.1"
|
|
|
|
# used as proc macro test targets
|
|
proc_macro_test = { path = "../proc_macro_test" }
|