Skip to content

Commit 62c972f

Browse files
committed
Tidies up CI and workspace dependencies. Enables dependabot
1 parent d1a0c4b commit 62c972f

File tree

20 files changed

+58
-40
lines changed

20 files changed

+58
-40
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "cargo"
4+
open-pull-requests-limit: 10
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
# ignore:
9+
# - dependency-name: ""

Cargo.toml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ futures-util = "0.3.25"
6464
parking_lot = "0.12"
6565
pin-project = "1.0.12"
6666
rand = "0.8"
67-
criterion = "0.4"
67+
criterion = "0.5.1"
6868
either = "1.8"
6969
tempdir = "0.3.7"
7070
slab = "0.4"
@@ -98,7 +98,7 @@ webpki = "0.22"
9898
webpki-roots = "0.22"
9999
tokio-rustls = "0.23"
100100
rustls-pemfile = "1.0.0"
101-
trust-dns-resolver = "0.22.0"
101+
trust-dns-resolver = "0.23.2"
102102
clap = "4.1"
103103
crossbeam-queue = { version = "0.3" }
104104
crossbeam-channel = { version = "0.5" }
@@ -108,6 +108,24 @@ percent-encoding = "2.1.0"
108108
mime = "0.3"
109109
serde_json = "1.0"
110110
serde = "1.0"
111-
reqwest = "0.11"
111+
reqwest = "0.12.4"
112112
convert_case = "0.6"
113113
frunk = "0.4"
114+
byteorder = "1.4"
115+
rmp = "0.8"
116+
ryu = "1.0"
117+
regex = "1.3.6"
118+
fnv = "1.0.7"
119+
cursive = { default-features = false, version = "0.20" }
120+
duration-str = "0.11.2"
121+
quick-xml = "0.31.0"
122+
csv = "1.2"
123+
serde-xml-rs = "0.6"
124+
axum = "0.6.20"
125+
hyper-staticfile = "0.9"
126+
httparse = "1.8"
127+
sha1 = "0.10"
128+
once_cell = "1.17.1"
129+
waker-fn = "1.1.0"
130+
num = "0.4"
131+
smol_str = "0.2.0"

api/formats/swimos_msgpack/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ either = { workspace = true }
1010
swimos_form = { path = "../../swimos_form" }
1111
swimos_model = { path = "../../swimos_model" }
1212
bytes = { workspace = true }
13-
byteorder = "1.4"
14-
rmp = "0.8"
13+
byteorder = { workspace = true }
14+
rmp = { workspace = true }
1515

1616
[dev-dependencies]
1717

api/formats/swimos_recon/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ swimos_utilities = { path = "../../../swimos_utilities", features = ["encoding"]
1616
nom = { workspace = true }
1717
nom_locate = { workspace = true }
1818
num-traits = { workspace = true }
19-
ryu = "1.0"
19+
ryu = { workspace = true }
2020
futures = { workspace = true }
2121
tokio = { workspace = true, features = ["io-util"] }
2222
tokio-util = { workspace = true, features = ["codec"] }

api/swimos_schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
swimos_model = { path = "../swimos_model" }
99
swimos_schema_derive = { path = "../swimos_schema_derive" }
1010
num-traits = { workspace = true }
11-
regex = "1.3.6"
11+
regex = { workspace = true }
1212

1313
[dev-dependencies]
1414
swimos_form = { path = "../swimos_form" }

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
trigger: ["main", "byte-routing"]
2-
pr: ["main", "byte-routing"]
1+
trigger: [ "main" ]
2+
pr: [ "main" ]
33

44
variables:
55
RUSTFLAGS: -Dwarnings

ci/azure-code-coverage.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
1-
trigger: ["main", "byte-routing"]
2-
pr: ["main", "byte-routing"]
3-
4-
schedules:
5-
- cron: "0 0 * * *"
6-
displayName: Nightly code coverage run
7-
branches:
8-
include:
9-
- main
10-
- byte-routing
11-
1+
trigger: [ "main" ]
2+
pr: [ "main" ]
123

134
variables:
14-
RUSTFLAGS: -Dwarnings
5+
RUSTFLAGS: -Dwarnings
156

167
jobs:
178
- job: Code_coverage

ci/azure-test-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
parameters:
2020
rust_version: ${{ parameters.rust }}
2121
- template: azure-install-sccache.yml
22-
- script: cargo test --verbose --all-features --workspace --lib --tests --profile "ci"
22+
- script: cargo test --all-features --workspace --lib --tests --profile "ci"
2323
env:
2424
RUST_BACKTRACE: 1
2525
displayName: cargo test --lib --tests

client/fixture/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ratchet = { features = ["deflate", "split"], workspace = true }
1212
swimos_recon = { path = "../../api/formats/swimos_recon" }
1313
swimos_model = { path = "../../api/swimos_model" }
1414
swimos_form = { path = "../../api/swimos_form" }
15-
tokio-util = { version = "0.6.8", features = ["codec"] }
15+
tokio-util = { workspace = true, features = ["codec"] }
1616
futures = { workspace = true }
1717
futures-util = { workspace = true }
1818
bytes = { workspace = true }

client/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bytes = { workspace = true }
2727
tokio = { workspace = true, features = ["io-util", "sync"] }
2828
tokio-util = { workspace = true, features = ["codec"] }
2929
url = { workspace = true }
30-
fnv = "1.0.7"
30+
fnv = { workspace = true }
3131
thiserror = { workspace = true }
3232
uuid = { workspace = true }
3333
tracing = { workspace = true }

0 commit comments

Comments
 (0)