| [package] |
| name = "selenium-manager" |
| version = "0.4.22-nightly" # don't forget to update rust/BUILD.bazel |
| edition = "2021" |
| authors = ["Selenium <selenium-developers@googlegroups.com"] |
| license = "Apache-2.0" |
| homepage = "https://www.selenium.dev/" |
| repository = "https://github.com/SeleniumHQ/selenium" |
| documentation = "https://www.selenium.dev/documentation/" |
| description = """ |
| Selenium Manager is a CLI tool that automatically manages the browser/driver infrastructure required by Selenium. |
| """ |
| |
| [dependencies] |
| clap = { version = "4.5.7", features = ["derive", "cargo"] } |
| log = "0.4.21" |
| env_logger = "0.11.3" |
| regex = "1.10.5" |
| tokio = { version = "1.38.0", default-features = false, features = ["macros", "net", "rt-multi-thread"] } |
| tempfile = "3.10.1" |
| reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls"] } |
| zip = { version = "2.1.3", default-features = false, features = ["deflate-zlib"] } |
| directories = "5.0.1" |
| serde = { version = "1.0.203", features = ["derive"] } |
| serde_json = "1.0.117" |
| flate2 = "1.0.30" |
| tar = "0.4.41" |
| infer = "0.16.0" |
| exitcode = "1.1.2" |
| toml = "0.8.14" |
| bzip2 = "0.4.4" |
| sevenz-rust = "0.6.0" |
| walkdir = "2.5.0" |
| debpkg = "0.6.0" |
| anyhow = { version = "1.0.86", default-features = false, features = ["backtrace", "std"] } |
| apple-flat-package = "0.18.0" |
| which = "6.0.1" |
| |
| [dev-dependencies] |
| assert_cmd = "2.0.14" |
| rstest = "0.19.0" |
| is_executable = "1.0.1" |
| |
| [profile.release] |
| opt-level = 'z' # Optimize for size |
| lto = true # Enable Link Time Optimization |
| codegen-units = 1 # Reduce number of codegen units to increase optimizations |
| panic = 'abort' # Abort on panic |
| strip = true # Strip symbols from binary |
| |
| [profile.dev] |
| debug = true # Full debug info |
| split-debuginfo = 'off' # Debug info in the final artifact |