Skip to content
Draft
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
49 changes: 40 additions & 9 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ members = [
]

[patch.crates-io]
h2 = { git = "https://github.com/apify/h2", rev = "7f393a728a8db07cabb1b78d2094772b33943b9a" }
rustls = { git = "https://github.com/apify/rustls", rev="c908559019c6521fbc4b487317a4ea24088a99f3" }
h2 = { git = "https://github.com/apify/h2", rev = "0c053aae81ba3be37511d7e2f472203588c8c025" }
rustls = { git = "https://github.com/apify/rustls", branch = "impit-main" }
tower-http = { git = "https://github.com/apify/tower-http", rev="f9efc0d9193e774d33aedc1022b922efefc22052" }
hyper-util = { git = "https://github.com/apify/hyper-util", rev="9b7795dfd7158fc55e7c84b65bf1dae1d2dea67d" }

Expand Down
1 change: 1 addition & 0 deletions impit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ encoding = "0.2.33"
hickory-client = "0.25.1"
hickory-proto = "0.25.1"
log = "0.4.22"
rand = "0.8"
mime = "0.3.17"
reqwest = { version="0.13.1", features = ["json", "gzip", "brotli", "zstd", "deflate", "http3", "cookies", "stream", "socks"] }
rustls = { version="0.23.36", features=["impit"] }
Expand Down
1 change: 1 addition & 0 deletions impit/h2
Submodule h2 added at 0c053a
1 change: 1 addition & 0 deletions impit/rustls
Submodule rustls added at 439602
8 changes: 8 additions & 0 deletions impit/src/fingerprint/database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@
//! This module contains fingerprint definitions for various browsers.

mod chrome;
mod edge;
mod firefox;

Check warning on line 7 in impit/src/fingerprint/database.rs

View workflow job for this annotation

GitHub Actions / rustfmt

Diff in /home/runner/work/impit/impit/impit/src/fingerprint/database.rs

Check warning on line 7 in impit/src/fingerprint/database.rs

View workflow job for this annotation

GitHub Actions / rustfmt

Diff in /home/runner/work/impit/impit/impit/src/fingerprint/database.rs
mod safari;

pub use chrome::{
chrome_100, chrome_101, chrome_104, chrome_107, chrome_110, chrome_116, chrome_124, chrome_125,
chrome_131, chrome_133, chrome_136, chrome_142,
};

Check warning on line 13 in impit/src/fingerprint/database.rs

View workflow job for this annotation

GitHub Actions / rustfmt

Diff in /home/runner/work/impit/impit/impit/src/fingerprint/database.rs

Check warning on line 13 in impit/src/fingerprint/database.rs

View workflow job for this annotation

GitHub Actions / rustfmt

Diff in /home/runner/work/impit/impit/impit/src/fingerprint/database.rs
pub use chrome::chrome_headers_for_os;
pub use edge::{edge_131, edge_136};
pub use edge::edge_headers_for_os;
pub use firefox::{firefox_128, firefox_133, firefox_135, firefox_144};
pub use firefox::firefox_headers_for_os;
pub use safari::{safari_17_0, safari_17_2_ios, safari_18_0, safari_18_4};
pub use safari::safari_headers_for_os;
Loading
Loading