@@ -30,36 +30,31 @@ schema = { path = "../schema" }
30
30
tracing-util = { path = " ../utils/tracing-util" }
31
31
metadata-resolve = {path = " ../metadata-resolve" }
32
32
33
- anyhow = " 1"
34
- axum = { version = " 0.6.20" }
35
- base64 = " 0.22.1"
36
- bincode = " 1.3.3"
37
- clap = { version = " 4" , features = [" derive" , " env" ] }
38
- json_value_merge = " 2.0"
39
- reqwest = { version = " 0.11" , features = [" json" , " multipart" ] }
40
- schemars = { version = " 0.8.20" , features = [" smol_str" ] }
41
- serde = " 1.0.203"
42
- serde_json = " 1.0.117"
43
- serde_path_to_error = " 0.1.14"
44
- thiserror = " 1.0"
45
- tokio = { version = " 1.38.0" , features = [
46
- " macros" ,
47
- " parking_lot" ,
48
- " rt-multi-thread" ,
49
- " signal" ,
50
- ] }
51
- tower = " 0.4"
52
- tower-http = { version = " 0.4" , features = [" trace" , " cors" , " fs" ] }
33
+ anyhow = { workspace = true }
34
+ axum = { workspace = true }
35
+ base64 = { workspace = true }
36
+ bincode = { workspace = true }
37
+ clap = { workspace = true , features = [" derive" , " env" ] }
38
+ json_value_merge = { workspace = true }
39
+ reqwest = { workspace = true , features = [" json" , " multipart" ] }
40
+ schemars = { workspace = true , features = [" smol_str" ] }
41
+ serde = { workspace = true }
42
+ serde_json = { workspace = true }
43
+ serde_path_to_error = { workspace = true }
44
+ thiserror = { workspace = true }
45
+ tokio = { workspace = true , features = [" macros" , " parking_lot" , " rt-multi-thread" , " signal" ] }
46
+ tower = { workspace = true }
47
+ tower-http = { workspace = true , features = [" trace" , " cors" , " fs" ] }
53
48
54
49
# Dependencies to build and run build.rs file
55
50
[build-dependencies ]
56
- build-data = " 0.2.1 " # To set short commit-sha at build time
51
+ build-data = { workspace = true } # To set short commit-sha at build time
57
52
58
53
[dev-dependencies ]
59
- criterion = { version = " 0.5 " , features = [" html_reports" , " async_tokio" ] }
60
- goldenfile = " 1.7.1 "
61
- pretty_assertions = " 1.3.0 "
62
- tokio-test = " 0.4.2 "
54
+ criterion = { workspace = true , features = [" html_reports" , " async_tokio" ] }
55
+ goldenfile = { workspace = true }
56
+ pretty_assertions = { workspace = true }
57
+ tokio-test = { workspace = true }
63
58
64
59
[package .metadata .cargo-machete ]
65
60
ignored = [
0 commit comments