11[workspace ]
22members = [
3- # "rust/common-builder",
43# "rust/common-javascript-interpreter",
54# "rust/common-formula-javascript-interpreter",
65# "rust/common-graph",
76# "rust/common-ifc",
87# "rust/common-integration-tests",
9- # "rust/common-macros",
10- # "rust/common-protos",
118# "rust/common-runtime",
12- # "rust/common-test-fixtures",
139# "rust/common-tools",
14- # "rust/common-tracing",
1510# "rust/common-wit",
11+ " rust/ct-builder" ,
1612 " rust/ct-common" ,
1713 " rust/ct-engine" ,
1814 " rust/ct-js-vm" ,
15+ " rust/ct-macros" ,
16+ " rust/ct-protos" ,
1917 " rust/ct-runtime" ,
18+ " rust/ct-test-fixtures" ,
19+ " rust/ct-tracing" ,
2020]
2121
2222# See: https://github.com/rust-lang/rust/issues/90148#issuecomment-949194352
@@ -26,30 +26,24 @@ resolver = "2"
2626anyhow = { version = " 1" }
2727async-stream = { version = " 0.3" }
2828async-trait = { version = " 0.1" }
29- # axum = { version = "0.7" }
29+ axum = { version = " 0.7" }
3030blake3 = { version = " 1.5" }
3131boa_engine = { version = " 0.19" }
3232boa_gc = { version = " 0.19" }
3333boa_runtime = { version = " 0.19" }
3434bytes = { version = " 1" }
3535clap = { version = " 4.5" }
36- # common-builder = { path = "./rust/common-builder" }
37- # common-graph = { path = "./rust/common-graph" }
38- # common-ifc = { path = "./rust/common-ifc" }
39- # common-integration-tests = { path = "./rust/common-integration-tests" }
40- # common-javascript-interpreter = { path = "./rust/common-javasript-interpreter" }
41- # common-macros = { path = "./rust/common-macros" }
42- # common-protos = { path = "./rust/common-protos", default-features = false }
43- # common-runtime = { path = "./rust/common-runtime" }
44- # common-test-fixtures = { path = "./rust/common-test-fixtures" }
45- # common-tracing = { path = "./rust/common-tracing" }
46- # common-wit = { path = "./rust/common-wit" }
36+ ct-builder = { path = " ./rust/ct-builder" }
4737ct-common = { path = " ./rust/ct-common" }
38+ ct-macros = { path = " ./rust/ct-macros" }
39+ ct-protos = { path = " ./rust/ct-protos" }
4840ct-runtime = { path = " ./rust/ct-runtime" }
41+ ct-test-fixtures = { path = " ./rust/ct-test-fixtures" }
42+ ct-tracing = { path = " ./rust/ct-tracing" }
4943# criterion = { version = "0.5" }
50- # darling = { version = "0.20" }
51- # deno_emit = { version = "0.45 " }
52- # deno_graph = { version = "0.82" } # Keep aligned with `deno_emit`'s version
44+ darling = { version = " 0.20" }
45+ deno_emit = { version = " 0.46 " }
46+ deno_graph = { version = " 0.82.3 " } # Keep aligned with `deno_emit`'s version
5347getrandom = { version = " 0.2" , features = [" js" ] }
5448# http = { version = "1.1" }
5549# http-body-util = { version = "0.1" }
@@ -59,35 +53,35 @@ js-sys = { version = "0.3" }
5953# lazy_static = { version = "1" }
6054# mime_guess = { version = "2" }
6155once_cell = { version = " 1" }
62- # prost = { version = "0.13" }
63- # quote = { version = "1" }
56+ prost = { version = " 0.13" }
57+ quote = { version = " 1" }
6458rand = { version = " 0.8" }
65- # redb = { version = "2" }
66- # reqwest = { version = "0.12", default-features = false }
59+ redb = { version = " 2" }
60+ reqwest = { version = " 0.12" , default-features = false }
6761# rust-embed = { version = "8.4" }
6862# serde = { version = "1", features = ["derive"] }
6963# serde_json = { version = "1" }
7064# sieve-cache = { version = "0.2" }
7165# strum = { version = "0.26" }
72- # syn = { version = "2" }
66+ syn = { version = " 2" }
7367tempfile = { version = " 3" }
7468thiserror = { version = " 1" }
75- # tonic = { version = "0.12", default-features = false }
76- # tonic-build = { version = "0.12", default-features = false, features = [
77- # "prost",
78- # ] }
69+ tonic = { version = " 0.12" , default-features = false }
70+ tonic-build = { version = " 0.12" , default-features = false , features = [
71+ " prost" ,
72+ ] }
7973# tonic-web = { version = "0.12" }
8074# tonic-web-wasm-client = { version = "0.6" }
8175tokio = { version = " 1" }
82- # tower-http = { version = "0.5" }
76+ tower-http = { version = " 0.5" }
8377tracing = { version = " 0.1" }
8478tracing-subscriber = { version = " 0.3" , features = [
8579 " env-filter" ,
8680 " tracing-log" ,
8781 " json" ,
8882] }
8983tracing-web = { version = " 0.1" }
90- # url = { version = "2" }
84+ url = { version = " 2" }
9185
9286# Minimum required wasm-bindgen / wasm-bindgen-test versions
9387# SEE: https://github.com/rustwasm/wasm-bindgen/issues/4083
0 commit comments