Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify cargo installation #49

Merged
merged 2 commits into from
May 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 12 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "tremor-language-server"
version = "0.8.1"
version = "0.8.2"
description = "Tremor Language Server (Trill)"
authors = ["The Tremor Team"]
edition = "2018"
license = "Apache-2.0"

[build-dependencies]
bincode = "1.2.1"
bincode = "1.2"
glob = "0.3"
home = "0.5"
regex = "1.3"
Expand All @@ -25,10 +25,18 @@ reqwest = "0.10"
# tremor deps
tremor-script = "0.8.1"

# use non-simd fallback with simd-json so that we can install tremor-language-server
# without needing to configure cpu target for simd-json compilation
# https://github.com/simd-lite/simd-json#cpu-target
#
# this is fine for language server use since we don't care as much for json
# processing performance here (easy installation is more important for users)
simd-json = { "version" = "0.3", "features" = ["allow-non-simd"] }

[dependencies]

bincode = "1.2.1"
clap = "2.33.1"
bincode = "1.2"
clap = "2.33"

halfbrown = "0.1"
jsonrpc-core = "14.1"
Expand Down