5 Commits

Author SHA1 Message Date
dependabot[bot]
772a5e91d7 Bump tungstenite from 0.13.0 to 0.20.1
Bumps [tungstenite](https://github.com/snapview/tungstenite-rs) from 0.13.0 to 0.20.1.
- [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/snapview/tungstenite-rs/compare/v0.13.0...v0.20.1)

---
updated-dependencies:
- dependency-name: tungstenite
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-11-29 12:04:10 +00:00
kpcyrd
dd52fafae0 Merge pull request #253 from kpcyrd/dependabot/cargo/openssl-0.10.60
Bump openssl from 0.10.57 to 0.10.60
2023-11-29 13:03:35 +01:00
dependabot[bot]
62cf78c34a Bump openssl from 0.10.57 to 0.10.60
Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.57 to 0.10.60.
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.60)

---
updated-dependencies:
- dependency-name: openssl
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-11-28 21:44:45 +00:00
kpcyrd
c1a2d411b3 Merge pull request #251 from sebdufourcq/main
Update docker command line in README.md
2023-09-17 05:16:48 +02:00
Sébastien DUFOURCQ
5554611f63 Update docker command line in README.md
https://github.com/kpcyrd/sn0int/issues/237
2023-09-16 23:11:53 +02:00
3 changed files with 8 additions and 23 deletions

27
Cargo.lock generated
View File

@@ -2081,15 +2081,6 @@ dependencies = [
"libc",
]
[[package]]
name = "input_buffer"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f97967975f448f1a7ddb12b0bc41069d09ed6a1c161a92687e057325db35d413"
dependencies = [
"bytes 1.4.0",
]
[[package]]
name = "iovec"
version = "0.1.4"
@@ -2928,9 +2919,9 @@ dependencies = [
[[package]]
name = "openssl"
version = "0.10.57"
version = "0.10.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c"
checksum = "79a4c6c3a2b158f7f8f2a2fc5a969fa3a068df6fc9dbb4a43845436e3af7c800"
dependencies = [
"bitflags 2.4.0",
"cfg-if 1.0.0",
@@ -2960,9 +2951,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
version = "0.9.92"
version = "0.9.96"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db7e971c2c2bba161b2d2fdf37080177eff520b3bc044787c7f1f5f9e78d869b"
checksum = "3812c071ba60da8b5677cc12bcb1d42989a65553772897a7e0355545a819838f"
dependencies = [
"cc",
"libc",
@@ -5236,21 +5227,15 @@ dependencies = [
[[package]]
name = "tungstenite"
version = "0.13.0"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fe8dada8c1a3aeca77d6b51a4f1314e0f4b8e438b7b1b71e3ddaca8080e4093"
checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9"
dependencies = [
"base64 0.13.1",
"byteorder",
"bytes 1.4.0",
"http 0.2.9",
"httparse",
"input_buffer",
"log 0.4.20",
"rand 0.8.5",
"sha-1 0.9.8",
"thiserror",
"url 2.4.1",
"utf-8",
]

View File

@@ -70,7 +70,7 @@ There are prebuilt packages signed by a debian maintainer:
Docker
docker run --rm --init -it -v "$PWD/.cache:/cache" -v "$PWD/.data:/data" kpcyrd/sn0int
docker run --rm --init -it -v "$PWD/.cache:/cache" -v "$PWD/.data:/data" ghcr.io/kpcyrd/sn0int
Alpine

View File

@@ -29,7 +29,7 @@ http = "0.2"
bufstream = "0.1.4"
pem = "3"
url = "2.0"
tungstenite = { version = "0.13", default-features = false }
tungstenite = { version = "0.20", default-features = false }
kuchiki = "0.8.0"
maxminddb = "0.23"
x509-parser = "0.13"