mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 00:47:18 +00:00
15 lines
366 B
TOML
15 lines
366 B
TOML
[package]
|
|
edition = "2018"
|
|
name = "ra_tt"
|
|
version = "0.1.0"
|
|
authors = ["rust-analyzer developers"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
stdx = { path = "../stdx" }
|
|
# ideally, `serde` should be enabled by `rust-analyzer`, but we enable it here
|
|
# to reduce number of compilations
|
|
smol_str = { version = "0.1.15", features = ["serde"] }
|