From 98efed8c9fe74970d29c0dabaddefce08b4333d0 Mon Sep 17 00:00:00 2001 From: KeyCode17 Date: Sat, 8 Aug 2026 01:07:00 +0700 Subject: [PATCH] docs: use a version requirement that does not go stale MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The install snippets pinned `= "1.9"`, which was already a release behind the moment 1.10.0 published — semantically fine (^1.9 resolves to 1.10.0) but it reads as stale on a 1.10.0 crate page, and would need a version bump of its own to correct each time. `= "1"` resolves the same way and never needs touching. --- README.md | 6 +++--- px-auth/README.md | 2 +- px-cache/README.md | 2 +- px-camoufox/README.md | 2 +- px-captcha/README.md | 2 +- px-cloudflare/README.md | 2 +- px-core/README.md | 2 +- px-datadome/README.md | 2 +- px-detector/README.md | 2 +- px-errors/README.md | 2 +- px-harvester/README.md | 2 +- px-native/README.md | 2 +- px-perimeterx/README.md | 2 +- px-pipeline/README.md | 2 +- px-turnstile/README.md | 2 +- px-types/README.md | 2 +- px-validation/README.md | 2 +- 17 files changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 2a610ba..bea3876 100644 --- a/README.md +++ b/README.md @@ -34,9 +34,9 @@ From crates.io, as libraries: ```toml [dependencies] -pxsolver-core = "1.9" # domain types: SolveRequest, PxCookieBundle, CacheKey -pxsolver-pipeline = "1.9" # ChallengeHandler, SolveAction, Pipeline -pxsolver-harvester = "1.9" # Harvester port + stealth Chromium pool +pxsolver-core = "1" # domain types: SolveRequest, PxCookieBundle, CacheKey +pxsolver-pipeline = "1" # ChallengeHandler, SolveAction, Pipeline +pxsolver-harvester = "1" # Harvester port + stealth Chromium pool ``` All 16 `pxsolver-*` library crates are published individually, so you can depend on one piece diff --git a/px-auth/README.md b/px-auth/README.md index b69981e..9dc352c 100644 --- a/px-auth/README.md +++ b/px-auth/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-auth = "1.9" +pxsolver-auth = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-auth`, but you `use px_auth::…`. diff --git a/px-cache/README.md b/px-cache/README.md index 0cbbb06..512aa98 100644 --- a/px-cache/README.md +++ b/px-cache/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-cache = "1.9" +pxsolver-cache = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-cache`, but you `use px_cache::…`. diff --git a/px-camoufox/README.md b/px-camoufox/README.md index e366275..7b0bf6c 100644 --- a/px-camoufox/README.md +++ b/px-camoufox/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-camoufox = "1.9" +pxsolver-camoufox = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-camoufox`, but you `use px_camoufox::…`. diff --git a/px-captcha/README.md b/px-captcha/README.md index 39a14c4..b8b1b5e 100644 --- a/px-captcha/README.md +++ b/px-captcha/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-captcha = "1.9" +pxsolver-captcha = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-captcha`, but you `use px_captcha::…`. diff --git a/px-cloudflare/README.md b/px-cloudflare/README.md index 65252b4..f3888eb 100644 --- a/px-cloudflare/README.md +++ b/px-cloudflare/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-cloudflare = "1.9" +pxsolver-cloudflare = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-cloudflare`, but you `use px_cloudflare::…`. diff --git a/px-core/README.md b/px-core/README.md index 11b7540..070c0e1 100644 --- a/px-core/README.md +++ b/px-core/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-core = "1.9" +pxsolver-core = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-core`, but you `use px_core::…`. diff --git a/px-datadome/README.md b/px-datadome/README.md index ecf755b..fe89fea 100644 --- a/px-datadome/README.md +++ b/px-datadome/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-datadome = "1.9" +pxsolver-datadome = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-datadome`, but you `use px_datadome::…`. diff --git a/px-detector/README.md b/px-detector/README.md index 93578f1..66babf0 100644 --- a/px-detector/README.md +++ b/px-detector/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-detector = "1.9" +pxsolver-detector = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-detector`, but you `use px_detector::…`. diff --git a/px-errors/README.md b/px-errors/README.md index faf4743..66050a3 100644 --- a/px-errors/README.md +++ b/px-errors/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-errors = "1.9" +pxsolver-errors = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-errors`, but you `use px_errors::…`. diff --git a/px-harvester/README.md b/px-harvester/README.md index e9ff6da..0466180 100644 --- a/px-harvester/README.md +++ b/px-harvester/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-harvester = "1.9" +pxsolver-harvester = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-harvester`, but you `use px_harvester::…`. diff --git a/px-native/README.md b/px-native/README.md index b7fccd4..bb29ac0 100644 --- a/px-native/README.md +++ b/px-native/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-native = "1.9" +pxsolver-native = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-native`, but you `use px_native::…`. diff --git a/px-perimeterx/README.md b/px-perimeterx/README.md index d00afc3..fbce385 100644 --- a/px-perimeterx/README.md +++ b/px-perimeterx/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-perimeterx = "1.9" +pxsolver-perimeterx = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-perimeterx`, but you `use px_perimeterx::…`. diff --git a/px-pipeline/README.md b/px-pipeline/README.md index 125d9f7..3200ba9 100644 --- a/px-pipeline/README.md +++ b/px-pipeline/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-pipeline = "1.9" +pxsolver-pipeline = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-pipeline`, but you `use px_pipeline::…`. diff --git a/px-turnstile/README.md b/px-turnstile/README.md index 7cf12aa..9230a35 100644 --- a/px-turnstile/README.md +++ b/px-turnstile/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-turnstile = "1.9" +pxsolver-turnstile = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-turnstile`, but you `use px_turnstile::…`. diff --git a/px-types/README.md b/px-types/README.md index 8d026b6..dcfe090 100644 --- a/px-types/README.md +++ b/px-types/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-types = "1.9" +pxsolver-types = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-types`, but you `use px_types::…`. diff --git a/px-validation/README.md b/px-validation/README.md index 41003be..c972e70 100644 --- a/px-validation/README.md +++ b/px-validation/README.md @@ -10,7 +10,7 @@ instead of the whole workspace. ```toml [dependencies] -pxsolver-validation = "1.9" +pxsolver-validation = "1" ``` > **The package name and the crate name differ.** You depend on `pxsolver-validation`, but you `use px_validation::…`.