File tree Expand file tree Collapse file tree 6 files changed +4
-57
lines changed
Expand file tree Collapse file tree 6 files changed +4
-57
lines changed Original file line number Diff line number Diff line change 3232 | Beta | Major.Minor.0-beta.X | ` Major.Minor.0 ` matches the upcoming stable release and ` X ` starts at ` 1 ` and increments with each beta release |
3333 | Alpha | Major.Minor.0-alpha.X | ` Major.Minor.0 ` matches the upcoming stable release and ` X ` starts at ` 1 ` and increments with each alpha release |
34341 . ` cd packages/rust/lsprotocol `
35- 1 . Optionally use ` cargo publish --all-features -- dry-run ` to do all of the building and testing work without actually publishing to crates.io.
35+ 1 . Optionally use ` cargo publish --dry-run ` to do all of the building and testing work without actually publishing to crates.io.
36361 . ` cargo login `
37- 1 . ` cargo publish --all-features `
37+ 1 . ` cargo publish `
Original file line number Diff line number Diff line change @@ -683,6 +683,4 @@ def generate_extras(
683683 extras = []
684684 if type_def .deprecated :
685685 extras += [f'#[deprecated(note = r#"{ type_def .deprecated } "#)]' ]
686- if type_def .proposed :
687- extras += ['#[cfg(feature = "proposed")]' ]
688686 return extras
Original file line number Diff line number Diff line change @@ -10,9 +10,6 @@ documentation = "https://microsoft.github.io/language-server-protocol"
1010readme = " README.md"
1111keywords = [" lsp" ]
1212
13- [features ]
14- proposed =[]
15-
1613[dependencies ]
1714serde = {version =" 1.0.152" , features = [" derive" ]}
1815serde_json = " 1.0.93"
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ This package contains Language Server Protocol types for Rust generated from the
66
77``` toml
88[dependencies ]
9- lsprotocol = { features = [ " proposed " ] }
9+ lsprotocol = {}
1010
1111```
You can’t perform that action at this time.
0 commit comments