@@ -11,6 +11,7 @@ members = [
1111 " dash/controller" ,
1212 " dash/gateway" ,
1313 " dash/openapi" ,
14+ " dash/pipe/connectors/storage" ,
1415 " dash/pipe/connectors/webcam" , # exclude(alpine)
1516 " dash/pipe/functions/identity" ,
1617 " dash/pipe/functions/python" , # exclude(alpine)
@@ -57,6 +58,7 @@ actix-web = { version = "=4.4", default-features = false, features = [
5758anyhow = { version = " =1.0" , features = [" backtrace" ] }
5859argon2 = { version = " =0.5" }
5960async-recursion = { version = " =1.0" }
61+ async-stream = { version = " =0.3" }
6062async-trait = { version = " =0.1" }
6163base64 = { version = " =0.21" }
6264byteorder = { version = " =1.4" }
@@ -67,7 +69,7 @@ chrono = { version = "=0.4", features = ["serde"] }
6769clap = { version = " =4.4" , features = [" env" , " derive" ] }
6870csv = { version = " =1.2" }
6971ctrlc = { version = " =3.4" }
70- deltalake = { version = " 0.16" , default-features = false }
72+ deltalake = { version = " = 0.16" , default-features = false }
7173email_address = { version = " =0.2" }
7274futures = { version = " =0.3" }
7375gethostname = { version = " =0.4" }
@@ -87,7 +89,7 @@ k8s-openapi = { version = "=0.20", features = ["schemars", "v1_26"] }
8789kube = { version = " =0.86" , default-features = false }
8890language-tags = { version = " =0.3" , features = [" serde" ] }
8991tracing = { version = " =0.1" }
90- tracing-subscriber = { version = " 0.3" }
92+ tracing-subscriber = { version = " = 0.3" }
9193mime = { version = " =0.3" }
9294# FIXME: push a PR: rustls-tls feature support
9395minio = { git = " https://github.com/ulagbulag/minio-rs.git" , default-features = false , rev = " 5be4686e307b058aa4190134a555c925301c59b2" , features = [
@@ -99,8 +101,8 @@ num-traits = { version = "=0.2" }
99101octocrab = { git = " https://github.com/ulagbulag/octocrab.git" , default-features = false , features = [
100102 " rustls-tls" ,
101103] }
102- opencv = { version = " 0.84" , default-features = false }
103- ordered-float = { version = " 4.0" , default-features = false , features = [
104+ opencv = { version = " = 0.84" , default-features = false }
105+ ordered-float = { version = " = 4.0" , default-features = false , features = [
104106 " bytemuck" ,
105107 " schemars" ,
106108 " serde" ,
@@ -147,6 +149,7 @@ sio = { git = "https://github.com/ulagbulag/sio-rs.git" }
147149strum = { version = " =0.25" , features = [" derive" ] }
148150tera = { version = " =1.19" }
149151tokio = { version = " =1.32" , features = [" macros" , " rt" ] }
152+ tokio-stream = { version = " =0.1" }
150153url = { version = " =2.4" , features = [" serde" ] }
151154uuid = { version = " =1.4" , features = [" js" , " serde" , " v4" ] }
152155which = { version = " =4.4" }
0 commit comments