lspt 0.3.0

Language Server Protocol (LSP) types made easy.
Documentation
# lspt

Types of [Language Server Protocol](https://microsoft.github.io/language-server-protocol/).

## Proposed Types

To use proposed types, enable the `proposed` feature. This is disabled by default.

## URI Implementation

By default, this library uses [`String`] as URI.
If this doesn't satisfy your requirements,
enable the `url` feature and it will switch to `url::Url`.

## Hashmap Implementation

By default, this library uses [`rustc_hash::FxHashMap`] as hashmap implementation, but can be disabled.

You can also enable the `indexmap` feature for preserve the order in map.