aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/req.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_lsp_server/src/req.rs')
-rw-r--r--crates/ra_lsp_server/src/req.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/src/req.rs b/crates/ra_lsp_server/src/req.rs
index b2f3c509d..1b23f0c3d 100644
--- a/crates/ra_lsp_server/src/req.rs
+++ b/crates/ra_lsp_server/src/req.rs
@@ -1,7 +1,6 @@
1use lsp_types::{Location, Position, Range, TextDocumentIdentifier, Url}; 1use lsp_types::{Location, Position, Range, TextDocumentIdentifier, Url};
2use rustc_hash::FxHashMap; 2use rustc_hash::FxHashMap;
3use serde::{Deserialize, Serialize}; 3use serde::{Deserialize, Serialize};
4use url_serde;
5 4
6pub use lsp_types::{ 5pub use lsp_types::{
7 notification::*, request::*, ApplyWorkspaceEditParams, CodeActionParams, CodeLens, 6 notification::*, request::*, ApplyWorkspaceEditParams, CodeActionParams, CodeLens,
@@ -98,7 +97,6 @@ impl Notification for PublishDecorations {
98#[derive(Serialize, Debug)] 97#[derive(Serialize, Debug)]
99#[serde(rename_all = "camelCase")] 98#[serde(rename_all = "camelCase")]
100pub struct PublishDecorationsParams { 99pub struct PublishDecorationsParams {
101 #[serde(with = "url_serde")]
102 pub uri: Url, 100 pub uri: Url,
103 pub decorations: Vec<Decoration>, 101 pub decorations: Vec<Decoration>,
104} 102}