[package]
edition = "2021"
rust-version = "1.74"
name = "shardx"
version = "0.1.9"
authors = ["ProxyShard"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Self-contained Rust SDK for the ShardX anti-detect browser — downloads the engine + Widevine + fingerprint library on first use, launches isolated profiles."
homepage = "https://github.com/ProxyShard/ShardBrowser"
documentation = "https://docs.proxyshard.com?utm_source=shardx&utm_medium=referral&utm_campaign=shardx-launcher"
readme = "README.md"
keywords = [
"anti-detect",
"browser",
"fingerprint",
"chromium",
"automation",
]
categories = [
"web-programming",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/ProxyShard/ShardBrowser"
[features]
control = [
"dep:chromiumoxide",
"dep:futures-util",
]
default = ["control"]
[lib]
name = "shardx"
path = "src/lib.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chromiumoxide]
version = "0.7"
features = ["tokio-runtime"]
optional = true
default-features = false
[dependencies.dirs]
version = "5"
[dependencies.futures-util]
version = "0.3"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
"socks",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"fs",
"io-util",
"net",
"time",
"process",
]
[dependencies.url]
version = "2"
[dependencies.zip]
version = "2"
features = ["deflate"]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = ["full"]