9 Commits
Author SHA1 Message Date
phoenix 9be97d7e6f cargo update
Rust / build (pull_request) Successful in 2m14s
2026-07-10 19:22:20 -04:00
phoenix 5079a207bc bump: textsender_models 2026-07-10 19:21:24 -04:00
phoenix 2ee7877769 bump: http 2026-07-10 19:20:48 -04:00
phoenix 1aabf5c7e2 bump: reqwest 2026-07-10 19:20:20 -04:00
phoenix 4885c3ce5f bump: serde_json 2026-07-10 19:19:49 -04:00
phoenix 094e7f9013 bump: tokio 2026-07-10 19:19:21 -04:00
phoenix 919d994e25 bump: uuid 2026-07-10 19:18:52 -04:00
phoenix e32ebfde6f Removing futures 2026-07-10 19:18:07 -04:00
phoenix ed528dd8fd bump: rust ci 2026-07-10 19:16:33 -04:00
3 changed files with 157 additions and 525 deletions
@@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: actions-rust-lang/setup-rust-toolchain@v1
with: with:
toolchain: 1.95 toolchain: 1.97
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- name: Build - name: Build
run: | run: |
Generated
+150 -517
View File
File diff suppressed because it is too large Load Diff
+6 -7
View File
@@ -6,12 +6,11 @@ edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
futures = { version = "0.3.32" } http = { version = "1.4.2" }
http = { version = "1.4.0" } reqwest = { version = "0.13.4", features = ["json", "blocking", "multipart", "stream"] }
reqwest = { version = "0.13.3", features = ["json", "blocking", "multipart", "stream"] }
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149" serde_json = "1.0.150"
tokio = { version = "1.52", features = ["full"] } tokio = { version = "1.52.3", features = ["full"] }
tokio-util = { version = "0.7.18", features = ["codec"] } tokio-util = { version = "0.7.18", features = ["codec"] }
uuid = { version = "1.23.1", features = ["v4", "serde"] } uuid = { version = "1.23.4", features = ["v4", "serde"] }
icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.11.1" } icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.11.3" }