-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "sysdig-lsp"
version = "0.8.3"
edition = "2024"
authors = [ "Sysdig Inc." ]
readme = "README.md"
description = "LSP implementation that integrates vulnerability and IaC scanning directly into your editor"
repository = "https://github.com/sysdiglabs/sysdig-lsp"
license = "Apache-2.0"
publish = false # We don't want to publish it to crates.io yet.
[dependencies]
async-trait = "0.1.85"
bollard = "0.19.0"
bytes = "1.10.1"
chrono = { version = "0.4.40", features = ["serde"] }
clap = { version = "4.5.34", features = ["derive"] }
dirs = "6.0.0"
futures = "0.3.31"
itertools = "0.14.0"
tabled = "0.20.0"
marked-yaml = { version = "0.8.0", features = ["serde"] }
rand = "0.9.0"
regex = "1.11.1"
reqwest = "0.12.14"
semver = "1.0.26"
serde = { version = "1.0.219", features = ["alloc", "derive"] }
serde_json = "1.0.135"
serial_test = { version = "3.2.0", features = ["file_locks"] }
tar = "0.4.44"
thiserror = "2.0.12"
tokio = { version = "1.43.0", features = ["full"] }
tower-lsp = "0.20.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
version-compare = "0.2.0"
[dev-dependencies]
rstest = "0.21.0"
serial_test = "3.1.1"
tracing-test = "0.2.5"
mockall = "0.13.0"
[features]
default = []