Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
fix: save full command
Browse files Browse the repository at this point in the history
  • Loading branch information
PThorpe92 committed Mar 24, 2024
1 parent ded1e07 commit 4f192e3
Show file tree
Hide file tree
Showing 9 changed files with 85 additions and 121 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [windows-latest, ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v3
Expand All @@ -24,6 +24,9 @@ jobs:
with:
toolchain: stable
override: true
- name: Install deps on Windows
if: runner.os == "Windows"
run: vcpkg install openssl:x64-windows-static-md
- name: Install Deps On Linux
if: runner.os == 'Linux'
run: |
Expand Down
145 changes: 55 additions & 90 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ tui-input = "0.8.0"
tui-widget-list = "0.8.2"
lazy_static = "1.4.0"
rusqlite = { version = "0.31.0", features = ["bundled"] }
serde_json = { version = "1.0.113", features = ["std"] }
serde_json = { version = "1.0.114", features = ["std"] }
serde = { version = "1.0.196", features = ["derive"] }
mockito = "1.2.0"
regex = "1.10.3"
curl = { version = "0.4.45", features = ["http2", "ntlm"] }
curl = { version = "0.4.46", features = ["http2", "ntlm"] }
dirs = "5.0.1"
http = "1.0.0"
toml = "0.8.10"
arboard = "3.3.0"
log = "0.4.20"
clap = "4.5.0"
http = "1.1.0"
toml = "0.8.12"
arboard = "3.3.2"
log = "0.4.21"
clap = "4.5.3"
once_cell = "1.19.0"

[profile.release]
Expand Down
Loading

0 comments on commit 4f192e3

Please sign in to comment.