diff --git a/Cargo.lock b/Cargo.lock index b5beb37476672..322dc0090605e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -633,21 +633,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "axum-server" -version = "0.4.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bace45b270e36e3c27a190c65883de6dfc9f1d18c829907c127464815dc67b24" -dependencies = [ - "bytes", - "futures-util", - "http 0.2.11", - "http-body 0.4.5", - "hyper 0.14.28", - "tokio", - "tower-service", -] - [[package]] name = "axum-server" version = "0.7.1" @@ -1354,9 +1339,9 @@ dependencies = [ [[package]] name = "const-random" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" +checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" dependencies = [ "const-random-macro", ] @@ -1548,9 +1533,9 @@ dependencies = [ [[package]] name = "crunchy" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" [[package]] name = "crypto-common" @@ -3737,9 +3722,9 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ordered-multimap" -version = "0.7.1" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4d6a8c22fc714f0c2373e6091bf6f5e9b37b1bc0b1184874b7e0a4e303d318f" +checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" dependencies = [ "dlv-list", "hashbrown 0.14.5", @@ -6407,7 +6392,6 @@ version = "0.1.0" dependencies = [ "camino", "clap", - "futures", "globwalk", "miette", "oxc_resolver 4.2.0", @@ -6478,7 +6462,6 @@ version = "0.1.0" dependencies = [ "anyhow", "bytes", - "chrono", "http 1.1.0", "httpmock", "insta", @@ -6493,9 +6476,7 @@ dependencies = [ "thiserror 1.0.63", "tokio", "tokio-stream", - "tokio-util", "tracing", - "turbopath", "turborepo-ci", "turborepo-vercel-api", "turborepo-vercel-api-mock", @@ -6509,7 +6490,7 @@ dependencies = [ "anyhow", "async-trait", "axum 0.7.5", - "axum-server 0.7.1", + "axum-server", "chrono", "hostname", "http 1.1.0", @@ -6610,7 +6591,6 @@ version = "0.1.0" dependencies = [ "biome_deserialize 0.6.0", "biome_diagnostics", - "biome_json_parser", "miette", "serde", "serde_json", @@ -6626,9 +6606,7 @@ dependencies = [ "fsevent-sys", "futures", "git2", - "itertools 0.10.5", "libc", - "nibble_vec", "notify", "num_cpus", "radix_trie", @@ -6679,7 +6657,6 @@ dependencies = [ "futures", "insta", "itertools 0.10.5", - "log", "petgraph", "thiserror 1.0.63", "tokio", @@ -6724,7 +6701,6 @@ dependencies = [ "futures-core", "git2", "globwalk", - "globwatch", "go-parse-duration", "hex", "human-panic", @@ -6871,11 +6847,9 @@ dependencies = [ "biome_deserialize_macros 0.6.0", "biome_diagnostics", "biome_json_parser", - "biome_json_syntax", "insta", "pretty_assertions", "serde", - "serde_json", "tempfile", "test-case", "thiserror 1.0.63", @@ -6929,7 +6903,6 @@ dependencies = [ "biome_deserialize_macros 0.6.0", "biome_diagnostics", "biome_json_parser", - "biome_json_syntax", "either", "globwalk", "itertools 0.10.5", @@ -7026,11 +6999,8 @@ version = "0.1.0" dependencies = [ "anyhow", "async-graphql", - "async-graphql-axum", - "async-stream", "atty", "axum 0.7.5", - "axum-server 0.7.1", "base64 0.22.1", "chrono", "clipboard-win", @@ -7040,7 +7010,6 @@ dependencies = [ "futures", "indicatif", "indoc", - "itertools 0.10.5", "lazy_static", "nix 0.26.2", "ratatui", @@ -7064,7 +7033,6 @@ name = "turborepo-unescape" version = "0.1.0" dependencies = [ "biome_deserialize 0.6.0", - "biome_diagnostics", "serde", "serde_json", ] @@ -7087,7 +7055,6 @@ version = "0.1.0" dependencies = [ "anyhow", "axum 0.7.5", - "axum-server 0.4.7", "futures-util", "port_scanner", "tempfile", diff --git a/crates/turbo-trace/Cargo.toml b/crates/turbo-trace/Cargo.toml index f1af206be6e76..886b7aeffa0a7 100644 --- a/crates/turbo-trace/Cargo.toml +++ b/crates/turbo-trace/Cargo.toml @@ -7,7 +7,6 @@ license = "MIT" [dependencies] camino.workspace = true clap = { version = "4.5.17", features = ["derive"] } -futures = { workspace = true } globwalk = { version = "0.1.0", path = "../turborepo-globwalk" } miette = { workspace = true, features = ["fancy"] } oxc_resolver = { workspace = true } diff --git a/crates/turborepo-api-client/Cargo.toml b/crates/turborepo-api-client/Cargo.toml index ea9de544e0571..9bc8cd8bc7b21 100644 --- a/crates/turborepo-api-client/Cargo.toml +++ b/crates/turborepo-api-client/Cargo.toml @@ -23,7 +23,6 @@ workspace = true [dependencies] bytes.workspace = true -chrono = { workspace = true, features = ["serde"] } lazy_static = { workspace = true } regex = { workspace = true } reqwest = { workspace = true, features = ["json", "stream"] } @@ -33,9 +32,7 @@ serde_json = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["full"] } tokio-stream = "0.1.15" -tokio-util = { version = "0.7.10", features = ["codec"] } tracing = { workspace = true } -turbopath = { workspace = true } turborepo-ci = { workspace = true } turborepo-vercel-api = { workspace = true } url = { workspace = true } diff --git a/crates/turborepo-errors/Cargo.toml b/crates/turborepo-errors/Cargo.toml index a151f54593f13..ebe412ca6e41e 100644 --- a/crates/turborepo-errors/Cargo.toml +++ b/crates/turborepo-errors/Cargo.toml @@ -9,7 +9,6 @@ license = "MIT" [dependencies] biome_deserialize = { workspace = true } biome_diagnostics = { workspace = true } -biome_json_parser = { workspace = true } miette = { workspace = true } serde = { workspace = true, features = ["derive"] } thiserror = { workspace = true } diff --git a/crates/turborepo-filewatch/Cargo.toml b/crates/turborepo-filewatch/Cargo.toml index c30445b54056a..e8f58f84b6d7f 100644 --- a/crates/turborepo-filewatch/Cargo.toml +++ b/crates/turborepo-filewatch/Cargo.toml @@ -11,8 +11,6 @@ workspace = true [dependencies] futures = { version = "0.3.26" } -itertools = { workspace = true } -nibble_vec = "0.1.0" notify = { workspace = true } num_cpus = { workspace = true } radix_trie = { workspace = true } diff --git a/crates/turborepo-graph-utils/Cargo.toml b/crates/turborepo-graph-utils/Cargo.toml index af44c5277e874..579aca768f58e 100644 --- a/crates/turborepo-graph-utils/Cargo.toml +++ b/crates/turborepo-graph-utils/Cargo.toml @@ -11,7 +11,6 @@ workspace = true fixedbitset = "0.4.2" futures = "0.3.26" itertools = { workspace = true } -log = "0.4.20" petgraph = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["full", "time"] } diff --git a/crates/turborepo-lib/Cargo.toml b/crates/turborepo-lib/Cargo.toml index 090b3303b46b7..2ae8b55048983 100644 --- a/crates/turborepo-lib/Cargo.toml +++ b/crates/turborepo-lib/Cargo.toml @@ -62,7 +62,6 @@ futures = { workspace = true } futures-core = "0.3.30" git2 = { workspace = true, default-features = false } globwalk = { version = "0.1.0", path = "../turborepo-globwalk" } -globwatch = { path = "../turborepo-globwatch" } go-parse-duration = "0.1.1" hex = "0.4.3" human-panic = "1.2.1" diff --git a/crates/turborepo-microfrontends/Cargo.toml b/crates/turborepo-microfrontends/Cargo.toml index 53a4bb5d45453..c89cb0c748230 100644 --- a/crates/turborepo-microfrontends/Cargo.toml +++ b/crates/turborepo-microfrontends/Cargo.toml @@ -9,9 +9,7 @@ biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } biome_diagnostics = { workspace = true } biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } serde = { workspace = true } -serde_json = { workspace = true } thiserror = { workspace = true } turbopath = { workspace = true } turborepo-errors = { workspace = true } diff --git a/crates/turborepo-repository/Cargo.toml b/crates/turborepo-repository/Cargo.toml index c1c108eb90874..47ddf85a48001 100644 --- a/crates/turborepo-repository/Cargo.toml +++ b/crates/turborepo-repository/Cargo.toml @@ -15,7 +15,6 @@ biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } biome_diagnostics = { workspace = true } biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } either = { workspace = true } globwalk = { version = "0.1.0", path = "../turborepo-globwalk" } diff --git a/crates/turborepo-ui/Cargo.toml b/crates/turborepo-ui/Cargo.toml index 049512a3fc9cc..032fd32885902 100644 --- a/crates/turborepo-ui/Cargo.toml +++ b/crates/turborepo-ui/Cargo.toml @@ -16,11 +16,8 @@ workspace = true [dependencies] async-graphql = { workspace = true } -async-graphql-axum = { workspace = true } -async-stream = "0.3.5" atty = { workspace = true } axum = { workspace = true, features = ["ws"] } -axum-server = { workspace = true } base64 = "0.22" chrono = { workspace = true } console = { workspace = true } @@ -28,7 +25,6 @@ crossterm = { version = "0.27.0", features = ["event-stream"] } dialoguer = { workspace = true } futures = { workspace = true } indicatif = { workspace = true } -itertools = { workspace = true } lazy_static = { workspace = true } nix = { version = "0.26.2", features = ["signal"] } ratatui = { workspace = true } diff --git a/crates/turborepo-unescape/Cargo.toml b/crates/turborepo-unescape/Cargo.toml index 3816debc1728c..16fcb15a94073 100644 --- a/crates/turborepo-unescape/Cargo.toml +++ b/crates/turborepo-unescape/Cargo.toml @@ -6,7 +6,6 @@ license = "MPL-2.0" [dependencies] biome_deserialize = { workspace = true } -biome_diagnostics = { workspace = true } serde.workspace = true serde_json.workspace = true diff --git a/crates/turborepo-vercel-api-mock/Cargo.toml b/crates/turborepo-vercel-api-mock/Cargo.toml index 8c45dcdb0b77f..54cf63fd3bc18 100644 --- a/crates/turborepo-vercel-api-mock/Cargo.toml +++ b/crates/turborepo-vercel-api-mock/Cargo.toml @@ -12,7 +12,6 @@ workspace = true [dependencies] anyhow = { workspace = true } axum = { workspace = true } -axum-server = "0.4.7" futures-util = "0.3.28" port_scanner = { workspace = true } tempfile = { workspace = true }