Skip to content

Commit

Permalink
Small dependency prunning
Browse files Browse the repository at this point in the history
  • Loading branch information
Rojods committed Mar 15, 2024
1 parent b553c6e commit 6fb8be1
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 11 deletions.
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ cxx = "1.0"
cxx-build = "1.0"
derive_builder = "0.20.0"
downcast-rs = "1.2.0"
jars = "0.1.1"
jni = { version = "0.21.1", features = ["invocation"] }
log = "0.4.17"
md5 = "0.7.0"
Expand All @@ -36,7 +35,6 @@ reqwest = { version = "0.11.18", default-features = false, features = [
"json",
"multipart",
] }
reqwest-eventsource = "0.5.0"
rmp-serde = "1.1"
schemars = "0.8.12"
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -50,6 +48,6 @@ rusqlite = { version = "0.31.0", features = ["bundled", "blob", "functions"] }
zip = "0.6.6"

[workspace.package]
version = "0.7.6"
version = "0.8.0"
authors = ["Rodolfo Jordao"]
edition = "2021"
1 change: 0 additions & 1 deletion rust-bridge-java/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ idesyde-common = { path = "../rust-common" }
derive_builder.workspace = true
jni.workspace = true
zip.workspace = true
jars.workspace = true
1 change: 0 additions & 1 deletion rust-orchestration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ reqwest.workspace = true
tungstenite.workspace = true
url.workspace = true
derive_builder.workspace = true
reqwest-eventsource.workspace = true
base64.workspace = true
rusqlite.workspace = true
6 changes: 0 additions & 6 deletions rust-orchestration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pub mod identification;

use std::borrow::BorrowMut;
use std::cmp::Ordering;
use std::collections::HashSet;
use std::hash::Hash;

use std::io::BufRead;
Expand All @@ -20,11 +19,9 @@ use std::process::ChildStdout;
use std::process::Stdio;
use std::sync::Arc;
use std::sync::Mutex;
use std::time::Duration;

use exploration::ExternalExplorerBuilder;

use identification::ExternalServerIdentifiticationIterator;
use idesyde_blueprints::IdentificationResultCompactMessage;
use idesyde_bridge_java::java_modules_from_jar_paths;
use idesyde_core::DecisionModel;
Expand All @@ -39,9 +36,6 @@ use log::debug;
use log::warn;
use rayon::prelude::*;
use reqwest::blocking::multipart::Form;
use reqwest::blocking::multipart::Part;
use serde::de;
use tungstenite::protocol::WebSocketConfig;
use url::Url;

use base64::{engine::general_purpose, Engine as _};
Expand Down

0 comments on commit 6fb8be1

Please sign in to comment.