Skip to content

Commit

Permalink
build: reduce deps
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Aug 4, 2024
1 parent d82c41a commit e8a80f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 170 deletions.
174 changes: 8 additions & 166 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ edition = "2021"

[dependencies]
discord-rich-presence = "0.2.4"
tokio = { version = "1.37.0", features = ["full"] }
tokio = { version = "1.37.0", features = ["rt-multi-thread", "io-std", "macros"] }
tower-lsp = "0.20.0"
git2 = "0.19.0"
serde_json = "1.0.122"
git2 = { version = "0.19.0", default-features = false }
serde_json = { version = "1.0.122", features = ["std"] }
lazy_static = "1.5.0"
regex = "1.10.6"
regex = { version = "1.10.6", default-features = false, features = ["std", "perf"] }

0 comments on commit e8a80f5

Please sign in to comment.