mirror of
https://github.com/GyulyVGC/sniffnet.git
synced 2025-12-23 22:29:01 -05:00
update deps
This commit is contained in:
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Extract version from Cargo.toml
|
||||
id: cargo-version
|
||||
|
||||
24
.github/workflows/package.yml
vendored
24
.github/workflows/package.yml
vendored
@@ -38,7 +38,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Install Linux dependencies
|
||||
if: matrix.os == 'ubuntu'
|
||||
@@ -126,7 +126,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Install dependencies
|
||||
run: apt-get update -y && apt-get install -y curl build-essential
|
||||
@@ -139,7 +139,7 @@ jobs:
|
||||
- name: Install packaging tools
|
||||
run: cargo install cargo-deb
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: build-ubuntu-${{ matrix.target }}
|
||||
path: target/
|
||||
@@ -179,13 +179,13 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Install dependencies
|
||||
run: apt-get update -y && apt-get install -y git build-essential graphicsmagick-imagemagick-compat wget file desktop-file-utils libfuse2
|
||||
|
||||
- name: Download Debian package
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: deb-${{ matrix.arch }}
|
||||
path: /target/
|
||||
@@ -231,7 +231,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Install dependencies
|
||||
run: dnf update -y && dnf install -y @development-tools patchelf
|
||||
@@ -244,7 +244,7 @@ jobs:
|
||||
- name: Install packaging tools
|
||||
run: cargo install cargo-generate-rpm
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: build-ubuntu-${{ matrix.target }}
|
||||
path: target/
|
||||
@@ -278,7 +278,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
@@ -288,7 +288,7 @@ jobs:
|
||||
cargo install toml-cli
|
||||
brew install create-dmg
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: build-macos-${{ matrix.target }}
|
||||
path: target/
|
||||
@@ -342,7 +342,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Install dependencies
|
||||
shell: powershell
|
||||
@@ -363,7 +363,7 @@ jobs:
|
||||
- name: Install packaging tools
|
||||
run: cargo install cargo-wix
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
- uses: actions/download-artifact@v5
|
||||
with:
|
||||
name: build-windows-${{ matrix.target }}
|
||||
path: target/
|
||||
@@ -384,7 +384,7 @@ jobs:
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Sign package artifacts
|
||||
uses: signpath/github-action-submit-signing-request@v1.2
|
||||
uses: signpath/github-action-submit-signing-request@v1.3
|
||||
with:
|
||||
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
|
||||
organization-id: '3b533e02-73c3-4908-a018-d09a34498a6a'
|
||||
|
||||
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
||||
- os: windows
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: rustfmt, clippy
|
||||
|
||||
495
Cargo.lock
generated
495
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
16
Cargo.toml
16
Cargo.toml
@@ -47,14 +47,14 @@ maxminddb = "0.26.0"
|
||||
confy = "1.0.0"
|
||||
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
|
||||
rodio = { version = "0.21.1", default-features = false, features = ["mp3", "playback"] }
|
||||
dns-lookup = "2.1.0"
|
||||
dns-lookup = "3.0.0"
|
||||
toml = "0.9.5"
|
||||
ctrlc = { version = "3.4.7", features = ["termination"] }
|
||||
rfd = "0.15.4"
|
||||
phf = "0.12.1"
|
||||
phf_shared = "0.12.1"
|
||||
phf = "0.13.1"
|
||||
phf_shared = "0.13.1"
|
||||
splines = "5.0.0"
|
||||
clap = { version = "4.5.44", features = ["derive"] }
|
||||
clap = { version = "4.5.46", features = ["derive"] }
|
||||
tokio = { version = "1.47.1", features = ["macros"] }
|
||||
async-channel = "2.5.0"
|
||||
|
||||
@@ -62,10 +62,10 @@ async-channel = "2.5.0"
|
||||
gag = "1.0.0"
|
||||
|
||||
[target.'cfg(not(target_arch = "powerpc64"))'.dependencies]
|
||||
reqwest = { version = "0.12.22", default-features = false, features = ["json", "rustls-tls"] }
|
||||
reqwest = { version = "0.12.23", default-features = false, features = ["json", "rustls-tls"] }
|
||||
|
||||
[target.'cfg(target_arch = "powerpc64")'.dependencies]
|
||||
reqwest = { version = "0.12.22", features = ["json"] }
|
||||
reqwest = { version = "0.12.23", features = ["json"] }
|
||||
|
||||
#───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
@@ -77,8 +77,8 @@ serial_test = { version = "3.2.0", default-features = false }
|
||||
#───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
[build-dependencies]
|
||||
phf_codegen = "0.12.1"
|
||||
phf_shared = "0.12.1"
|
||||
phf_codegen = "0.13.1"
|
||||
phf_shared = "0.13.1"
|
||||
rustrict = { version = "0.7.36", default-features = false, features = ["censor"] }
|
||||
|
||||
[target."cfg(windows)".build-dependencies]
|
||||
|
||||
Reference in New Issue
Block a user