1[package] 2name = "codespan-lsp" 3version = "0.11.0" 4license = "Apache-2.0" 5authors = ["Markus Westerlind <marwes91@gmail.com>"] 6description = "Conversions between codespan types and Language Server Protocol types" 7homepage = "https://github.com/brendanzab/codespan" 8repository = "https://github.com/brendanzab/codespan" 9documentation = "https://docs.rs/codespan-lsp" 10edition = "2018" 11 12[dependencies] 13codespan-reporting = { version = "0.11.0", path = "../codespan-reporting" } 14# WARNING: Be extremely careful when expanding this version range. 15# We should be confident that all of the uses of `lsp-types` in `codespan-lsp` 16# will be valid for all the versions in this range. Getting this range wrong 17# could potentially break down-stream builds on a `cargo update`. This is an 18# absolute no-no, breaking much of what we enjoy about Cargo! 19lsp-types = ">=0.84, <0.85" 20url = "2" 21