File tree Expand file tree Collapse file tree 3 files changed +23
-12
lines changed Expand file tree Collapse file tree 3 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,14 @@ default-members = [
9
9
]
10
10
11
11
resolver = " 2"
12
+
13
+ [workspace .dependencies ]
14
+ anyhow = " 1.0.95"
15
+ clap = " 4.5.26"
16
+ serde = " 1.0.217"
17
+ serde_json = " 1.0.135"
18
+ thiserror = " 2.0.11"
19
+ tokio = " 1"
20
+ tokio-test = " 0.4.4"
21
+ tracing = " 0.1.41"
22
+ tracing-subscriber = " 0.3.19"
Original file line number Diff line number Diff line change @@ -4,18 +4,18 @@ version = "0.0.1"
4
4
edition = " 2021"
5
5
6
6
[dependencies ]
7
- tokio = { version = " 1 " , features = [" full" ] }
8
- tracing = " 0.1.41 "
9
- thiserror = " 2.0.11 "
10
- anyhow = " 1.0.95 "
11
- serde = " 1.0.217 "
12
- serde_json = " 1.0.135 "
13
- clap = { version = " 4.5.26 " , features = [" derive" ] }
7
+ tokio = { workspace = true , features = [" full" ] }
8
+ tracing = { workspace = true }
9
+ thiserror = { workspace = true }
10
+ anyhow = { workspace = true }
11
+ serde = { workspace = true }
12
+ serde_json = { workspace = true }
13
+ clap = { workspace = true , features = [" derive" ] }
14
14
# workspace member depdenencies
15
15
chatty-types = { path = " ../chatty-types" }
16
16
17
17
[dev-dependencies ]
18
- tokio-test = " 0.4.4 "
18
+ tokio-test = { workspace = true }
19
19
20
20
[[bin ]]
21
21
name = " server"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version = "0.0.1"
4
4
edition = " 2021"
5
5
6
6
[dependencies ]
7
- tracing = " 0.1.41 "
8
- tracing-subscriber = { version = " 0.3.19 " , features = [" env-filter" ] }
9
- anyhow = " 1.0.95 "
10
- serde = { version = " 1.0.217 " , features = [" derive" ] }
7
+ tracing = { workspace = true }
8
+ tracing-subscriber = { workspace = true , features = [" env-filter" ] }
9
+ anyhow = { workspace = true }
10
+ serde = { workspace = true , features = [" derive" ] }
You can’t perform that action at this time.
0 commit comments