aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_tt/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_tt/Cargo.toml')
-rw-r--r--crates/ra_tt/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/ra_tt/Cargo.toml b/crates/ra_tt/Cargo.toml
index 3328d312f..3fcc7f085 100644
--- a/crates/ra_tt/Cargo.toml
+++ b/crates/ra_tt/Cargo.toml
@@ -5,4 +5,6 @@ version = "0.1.0"
5authors = ["rust-analyzer developers"] 5authors = ["rust-analyzer developers"]
6 6
7[dependencies] 7[dependencies]
8smol_str = "0.1.9" 8# ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here
9# to reduce number of compilations
10smol_str = { version = "0.1.12", features = ["serde"] }