Skip to content

Commit

Permalink
Remove duplicate action and add windows specific dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Feb 10, 2024
1 parent 91d37f6 commit 4b94f19
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 25 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,12 @@ jobs:
name: RuStream-Linux-x86_64.tar.gz
command: build

# todo: Currently failing due to OpenSSL requirement on Windows
# - release_for: Windows-x86_64
# os: windows-latest
# target: x86_64-pc-windows-msvc
# bin: stream.exe
# name: RuStream-Windows-x86_64.zip
# command: build
- release_for: Windows-x86_64
os: windows-latest
target: x86_64-pc-windows-msvc
bin: stream.exe
name: RuStream-Windows-x86_64.zip
command: build

- release_for: macOS-x86_64
os: macOS-latest
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/rust.yml

This file was deleted.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://doc.rust-lang.org/cargo/getting-started/first-steps.html#first-steps-with-cargo
[package]
name = "RuStream"
version = "0.0.0-test"
version = "0.0.0-a"
description = "Rustic API to stream videos from localhost"
license = "MIT"
documentation = "https://thevickypedia.github.io/rustic-stream"
Expand All @@ -13,6 +13,9 @@ edition = "2021"
name = "stream"
path = "src/main.rs"

[target.'cfg(windows)'.dependencies]
openssl-sys = "0.9"

[dependencies]
actix-rt = "2.9.0"
actix-web = "4.4.1"
Expand Down

0 comments on commit 4b94f19

Please sign in to comment.