Skip to content

Commit 0f0c7eb

Browse files
committed
Update cargo
1 parent aac18f4 commit 0f0c7eb

1 file changed

Lines changed: 26 additions & 11 deletions

File tree

Cargo.toml

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[workspace]
22
resolver = "3"
33
members = [
4-
"crates/threads-core",
5-
"crates/threads-manifest",
6-
"crates/threads-provider-official",
7-
"crates/threads-provider-web",
8-
"crates/threads-store",
9-
"crates/threads-ingest",
10-
"crates/threads-cli",
4+
"crates/threads-core",
5+
"crates/threads-manifest",
6+
"crates/threads-provider-official",
7+
"crates/threads-provider-web",
8+
"crates/threads-store",
9+
"crates/threads-ingest",
10+
"crates/threads-cli",
1111
]
1212

1313
[workspace.package]
@@ -16,15 +16,27 @@ edition = "2024"
1616
rust-version = "1.85"
1717
license = "MIT OR Apache-2.0"
1818
authors = ["threads-cli contributors"]
19-
repository = "https://github.com/chrisgeorge/threads-cli"
19+
repository = "https://github.com/chrisgeo/threads-cli"
2020

2121
[workspace.dependencies]
2222
# async runtime
23-
tokio = { version = "1.40", features = ["rt-multi-thread", "macros", "net", "io-util", "signal", "time", "fs"] }
23+
tokio = { version = "1.40", features = [
24+
"rt-multi-thread",
25+
"macros",
26+
"net",
27+
"io-util",
28+
"signal",
29+
"time",
30+
"fs",
31+
] }
2432
async-trait = "0.1"
2533

2634
# http
27-
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "stream"] }
35+
reqwest = { version = "0.12", default-features = false, features = [
36+
"rustls-tls",
37+
"json",
38+
"stream",
39+
] }
2840
url = { version = "2.5", features = ["serde"] }
2941

3042
# serde + formats
@@ -47,7 +59,10 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
4759

4860
# utilities
4961
chrono = { version = "0.4", features = ["serde"] }
50-
keyring = { version = "3", default-features = false, features = ["apple-native", "sync-secret-service"] }
62+
keyring = { version = "3", default-features = false, features = [
63+
"apple-native",
64+
"sync-secret-service",
65+
] }
5166
dirs = "5"
5267

5368
# test helpers

0 commit comments

Comments
 (0)