Skip to content

Commit a62004a

Browse files
committed
Merge branch 'main' of https://github.com/swimos/swim-rust into unused-deps
# Conflicts: # example_apps/transit/Cargo.toml
2 parents fbf5790 + 94185f5 commit a62004a

File tree

28 files changed

+209
-48
lines changed

28 files changed

+209
-48
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: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ members = [
3737
"example_apps/tutorial_app",
3838
"example_apps/tutorial_app/model",
3939
"example_apps/tutorial_app/generator",
40+
"example_apps/join_map",
4041
"example_apps/join_value",
4142
]
4243

@@ -64,7 +65,7 @@ futures-util = "0.3.25"
6465
parking_lot = "0.12"
6566
pin-project = "1.0.12"
6667
rand = "0.8"
67-
criterion = "0.4"
68+
criterion = "0.5.1"
6869
either = "1.8"
6970
tempdir = "0.3.7"
7071
slab = "0.4"
@@ -90,15 +91,15 @@ num-bigint = "0.4"
9091
ratchet = { package = "ratchet_rs", version = "0.4" }
9192
ratchet_fixture = "0.4"
9293
flate2 = "1.0.22"
93-
bitflags = "1.3"
94+
bitflags = "2.5"
9495
rocksdb = "0.22"
9596
integer-encoding = "3.0.4"
9697
rustls = "0.20"
9798
webpki = "0.22"
9899
webpki-roots = "0.22"
99100
tokio-rustls = "0.23"
100101
rustls-pemfile = "1.0.0"
101-
trust-dns-resolver = "0.22.0"
102+
trust-dns-resolver = "0.23.2"
102103
clap = "4.1"
103104
crossbeam-queue = { version = "0.3" }
104105
crossbeam-channel = { version = "0.5" }
@@ -108,6 +109,23 @@ percent-encoding = "2.1.0"
108109
mime = "0.3"
109110
serde_json = "1.0"
110111
serde = "1.0"
111-
reqwest = "0.11"
112+
reqwest = "0.12.4"
112113
convert_case = "0.6"
113114
frunk = "0.4"
115+
byteorder = "1.4"
116+
rmp = "0.8"
117+
ryu = "1.0"
118+
regex = "1.3.6"
119+
fnv = "1.0.7"
120+
cursive = { default-features = false, version = "0.20" }
121+
duration-str = "0.11.2"
122+
quick-xml = "0.31.0"
123+
csv = "1.2"
124+
serde-xml-rs = "0.6"
125+
axum = "0.6.20"
126+
hyper-staticfile = "0.9"
127+
httparse = "1.8"
128+
sha1 = "0.10"
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
@@ -11,7 +11,7 @@ ratchet = { features = ["deflate", "split"], workspace = true }
1111
swimos_recon = { path = "../../api/formats/swimos_recon" }
1212
swimos_model = { path = "../../api/swimos_model" }
1313
swimos_form = { path = "../../api/swimos_form" }
14-
tokio-util = { version = "0.6.8", features = ["codec"] }
14+
tokio-util = { workspace = true, features = ["codec"] }
1515
futures = { workspace = true }
1616
futures-util = { workspace = true }
1717
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)