blob: 3c45248c3e0885e7ac602de0714f847273cd91aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[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"] }
|