Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies & include RCC binaries for MacOS in release page #663

Merged
merged 3 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
cp artifact/rcc/linux64/rccremote artifact/rcc/rccremote_linux64
cp artifact/rcc/windows64/rcc.exe artifact/rcc/rcc_windows64.exe
cp artifact/rcc/windows64/rccremote.exe artifact/rcc/rccremote_windows64.exe
cp artifact/rcc/macos64/rcc artifact/rcc/rcc_macos64
cp artifact/rcc/macos64/rccremote artifact/rcc/rccremote_macos64

- name: "Compute release tag"
id: compute-tag
Expand All @@ -67,7 +69,9 @@ jobs:
artifact/rcc/rcc_linux64,
artifact/rcc/rccremote_linux64,
artifact/rcc/rcc_windows64.exe,
artifact/rcc/rccremote_windows64.exe
artifact/rcc/rccremote_windows64.exe,
artifact/rcc/rcc_macos64,
artifact/rcc/rccremote_macos64
replacesArtifacts: true
removeArtifacts: true
prerelease: true
Expand Down
64 changes: 22 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
[package]
name = "robotmk"
version = "3.0.0-alpha-14"
version = "3.0.0-alpha-15"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = { version = "1.0.93", features = ["backtrace"] }
anyhow = { version = "1.0.94", features = ["backtrace"] }
base64 = "0.22.1"
camino = { version = "1.1.9", features = ["serde1"] }
chrono = "0.4.38"
clap = { version = "4.5.21", features = ["derive"] }
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive"] }
ctrlc = { version = "3.4.5", features = ["termination"] }
flate2 = "1.0.35"
flexi_logger = "0.29.6"
fs4 = "0.11.1"
libc = "0.2.162"
flexi_logger = "0.29.7"
fs4 = "0.12.0"
libc = "0.2.168"
log = "0.4.22"
nix = { version = "0.29.0", features = ["signal"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
sysinfo = "0.32.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
sysinfo = "0.33.0"
tar = "0.4.43"
tempfile = "3.14.0"
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["full"] }
thiserror = "2.0.7"
tokio = { version = "1.42.0", features = ["full"] }
tokio-util = { version = "0.7.13", features = ["full"] }
walkdir = "2.5.0"
winsafe = { version = "0.0.22", features = [ "ole" ] }
[dependencies.windows]
Expand Down
Loading