Skip to content

Commit 11d5e99

Browse files
committed
workspace_deps
1 parent ba9e625 commit 11d5e99

File tree

25 files changed

+124
-248
lines changed

25 files changed

+124
-248
lines changed

Cargo.lock

Lines changed: 41 additions & 158 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,27 +53,58 @@ bencher_google_index = { path = "plus/bencher_google_index" }
5353
bencher_license = { path = "plus/bencher_license" }
5454
# crates.io
5555
anyhow = "1.0"
56+
assert_cmd = "2.0"
5657
async-compression = "0.4"
58+
async-openai = "0.28"
59+
async-stripe = "0.41"
5760
async-trait = "0.1"
61+
aws-credential-types = "1.2"
62+
aws-sdk-s3 = "1.57"
63+
base64 = "0.22"
64+
bollard = "0.19"
65+
bytes = "1.10"
5866
camino = "1.1"
5967
chrono = { version = "0.4", default-features = false }
6068
clap = { version = "4.5", features = ["derive"] }
69+
clap_mangen = "0.2"
70+
console_error_panic_hook = "0.1"
71+
criterion = "0.5"
72+
css-inline = "0.14"
6173
derive_more = { version = "2.0", features = ["display"] }
6274
diesel = "2.2"
75+
diesel_migrations = "2.2"
76+
dotenvy = "0.15"
77+
email_address = "0.2"
6378
fs-err = "3.1"
79+
futures-util = "0.3"
6480
gix = { version = "0.72", default-features = false }
81+
gix-hash = "0.16"
82+
git-validate = "0.7"
6583
http = "1.3"
84+
image = "0.25"
6685
jsonwebtoken = "9.3"
86+
libsqlite3-sys = ">=0.17.2, <0.34.0"
6787
literally = "0.1"
88+
mail-send = "0.5"
89+
minijinja = "2.3"
90+
newline-converter = "0.3"
91+
nom = "7.1"
92+
notify-rust = "4.11"
93+
oauth2 = "5.0"
6894
octocrab = "0.44"
6995
ordered-float = "5.0"
7096
oso = "0.27"
7197
paste = "1.0"
98+
percent-encoding = "2.3"
99+
plotters = "0.3"
100+
plotters-bitmap = "0.3"
72101
pretty_assertions = "1.4"
102+
prettyplease = "0.2"
73103
rand = "0.9"
74104
regex = "1.11"
75105
regex-lite = "0.1"
76106
reqwest = { version = "0.12", default-features = false }
107+
rust_decimal = { version = "1.36", features = ["serde-with-float"] }
77108
schemars = { version = "0.8", features = ["uuid1"] }
78109
sentry = { version = "0.39", default-features = false, features = [
79110
"reqwest",
@@ -84,14 +115,22 @@ serde_json = "1.0"
84115
serde_urlencoded = "0.7"
85116
serde_yaml = "0.9"
86117
slog = "2.7"
118+
slog-term = "2.9"
87119
slug = "0.1"
120+
statrs = "0.18"
121+
strip-ansi-escapes = "0.2"
122+
syn = "2.0"
88123
tabled = "0.20"
124+
tame-oauth = "0.10"
89125
thiserror = "2.0"
90126
tokio = "1.45"
91127
tokio-rustls = {version = "0.26", default-features = false, features = ["logging", "tls12", "ring"]}
92128
typeshare = "1.0"
93129
url = "2.5"
94130
uuid = "1.17"
131+
wasm-bindgen = "0.2"
132+
wasm-bindgen-test = "0.3"
133+
windows = "0.61"
95134
# oxide
96135
dropshot = "0.16"
97136
progenitor = "0.11"

lib/bencher_adapter/Cargo.toml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,19 @@ license-file.workspace = true
77
publish = false
88

99
[dependencies]
10-
# Workspace
1110
bencher_json = { workspace = true, features = ["server"] }
1211
literally.workspace = true
12+
nom.workspace = true
1313
ordered-float.workspace = true
14+
rust_decimal.workspace = true
1415
serde.workspace = true
1516
serde_json.workspace = true
17+
strip-ansi-escapes.workspace = true
1618
thiserror.workspace = true
17-
# Crate
18-
nom = "7.1"
19-
rust_decimal = { version = "1.36", features = ["serde-with-float"] }
20-
strip-ansi-escapes = "0.2"
2119

2220
[dev-dependencies]
23-
# Workspace
21+
criterion.workspace = true
2422
pretty_assertions.workspace = true
25-
# Crate
26-
criterion = "0.5"
2723

2824
[lints]
2925
workspace = true

lib/bencher_boundary/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ plus = ["bencher_json/plus"]
1414
[dependencies]
1515
bencher_json.workspace = true
1616
slog.workspace = true
17+
statrs.workspace = true
1718
thiserror.workspace = true
18-
# Crate
19-
statrs = "0.18"
2019

2120
[dev-dependencies]
2221
bencher_logger.workspace = true

lib/bencher_client/Cargo.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ native-tls = ["reqwest/native-tls"]
1616
rustls-tls = ["reqwest/rustls-tls", "reqwest/rustls-tls-native-roots"]
1717

1818
[dependencies]
19-
# Workspace
2019
bencher_json.workspace = true
20+
bytes.workspace = true
2121
chrono = { workspace = true, features = ["serde"] }
2222
fs-err.workspace = true
2323
progenitor-client.workspace = true
@@ -28,15 +28,12 @@ thiserror.workspace = true
2828
tokio = { workspace = true, features = ["time"] }
2929
url.workspace = true
3030
uuid = { workspace = true, features = ["serde", "v4"] }
31-
# Crate
32-
bytes = "1.10"
3331

3432
[build-dependencies]
33+
prettyplease.workspace = true
3534
progenitor.workspace = true
3635
serde_json.workspace = true
37-
# Crate
38-
prettyplease = "0.2"
39-
syn = "2.0"
36+
syn.workspace = true
4037

4138
[lints]
4239
workspace = true

lib/bencher_context/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ server = ["bencher_valid/server"]
1212
schema = ["dep:schemars"]
1313

1414
[dependencies]
15-
# Workspace
1615
bencher_valid = { workspace = true, optional = true }
1716
gix = { workspace = true, optional = true, features = ["revision"] }
1817
schemars = { workspace = true, optional = true }
@@ -21,7 +20,7 @@ typeshare.workspace = true
2120
uuid = { workspace = true, optional = true, features = ["serde"] }
2221

2322
[target.'cfg(target_os = "windows")'.dependencies]
24-
windows = { version = "0.60", optional = true, features = [
23+
windows = { workspace = true, optional = true, features = [
2524
"System_Profile_SystemManufacturers",
2625
"Win32_System_Registry",
2726
] }

lib/bencher_github/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ publish = false
88

99
[dependencies]
1010
bencher_valid.workspace = true
11+
oauth2.workspace = true
1112
octocrab.workspace = true
1213
serde.workspace = true
1314
thiserror.workspace = true
14-
# Crate
15-
oauth2 = "5.0"
1615

1716
[lints]
1817
workspace = true

lib/bencher_json/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ db = ["dep:diesel", "dep:serde_yaml", "bencher_valid/db"]
1515
plus = ["bencher_valid/plus"]
1616

1717
[dependencies]
18-
# Workspace
1918
bencher_context.workspace = true
2019
bencher_valid = { workspace = true, features = ["schema"] }
2120
derive_more.workspace = true
2221
diesel = { workspace = true, optional = true }
2322
ordered-float = { workspace = true, features = ["serde"] }
23+
percent-encoding.workspace = true
2424
schemars = { workspace = true, optional = true, features = ["chrono", "url"] }
2525
serde.workspace = true
2626
serde_json.workspace = true
@@ -31,8 +31,6 @@ thiserror.workspace = true
3131
typeshare.workspace = true
3232
url = { workspace = true, features = ["serde"] }
3333
uuid = { workspace = true, features = ["v4", "serde"] }
34-
# Create
35-
percent-encoding = "2.3"
3634

3735
[dev-dependencies]
3836
pretty_assertions.workspace = true

lib/bencher_logger/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ publish = false
88

99
[dependencies]
1010
slog.workspace = true
11-
# Crate
12-
slog-term = "2.9"
11+
slog-term.workspace = true
1312

1413
[lints]
1514
workspace = true

lib/bencher_plot/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@ publish = false
99
[dependencies]
1010
bencher_json = {workspace = true, features = ["server"] }
1111
chrono.workspace = true
12+
image.workspace = true
13+
plotters = { workspace = true, features = ["datetime"] }
14+
plotters-bitmap.workspace = true
1215
ordered-float.workspace = true
1316
thiserror.workspace = true
14-
# Crate
15-
image = "0.25"
16-
plotters = { version = "0.3", features = ["datetime"] }
17-
plotters-bitmap = "0.3"
1817

1918
[dev-dependencies]
2019
serde_json.workspace = true

0 commit comments

Comments
 (0)