diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/Cargo.toml b/Cargo.toml index 8f07281..384582a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,23 +10,19 @@ default = ["models", "smd", "sm-cli"] models = [] smd = [ "dep:clap", - "dep:dropshot", + "dep:rayon", "dep:toml", - "dep:semver", "models", ] sm-cli = [ "dep:clap", "dep:toml", - "dep:reqwest", "models", ] [dependencies] -schemars = { version = "0.8.22", features = ["uuid1"] } -semver = { version = "1.0.26", optional = true } +rayon = { version = "1.10.0", optional = true } serde = { version = "1.0.219", features = ["derive"] } -tokio = { version = "1.45.1", features = ["full"] } toml = { version = "0.8.22", optional = true } uuid = { version = "1.17.0", features = ["v4", "serde"] } @@ -37,24 +33,6 @@ features = [ ] optional = true -[dependencies.dropshot] -version = "0.16.2" -features = [ - "usdt", - "usdt-probes", -] -optional = true - -[dependencies.reqwest] -version = "0.12.22" -features = [ - "gzip", - "cookies", - "brotli", - "zstd" -] -optional = true - [[bin]] name = "smd" path = "src/server/main.rs" |