"Fossies" - the Fresh Open Source Software Archive

Member "selenium-selenium-4.8.1/rust/Cargo.toml" (17 Feb 2023, 1318 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TOML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the last Fossies "Diffs" side-by-side code changes report for "Cargo.toml": 4.8.0_vs_4.8.1.

    1 [package]
    2 name = "selenium-manager"
    3 version = "1.0.0-M3"
    4 edition = "2021"
    5 authors = ["Selenium <selenium-developers@googlegroups.com"]
    6 license = "Apache-2.0"
    7 homepage = "https://www.selenium.dev/"
    8 repository = "https://github.com/SeleniumHQ/selenium"
    9 documentation = "https://www.selenium.dev/documentation/"
   10 description = """
   11 Selenium Manager is a CLI tool that automatically manages the browser/driver infrastructure required by Selenium.
   12 """
   13 
   14 [dependencies]
   15 clap = { version = "4.0.32", features = ["derive"] }
   16 log = "0.4.17"
   17 env_logger = "0.10.0"
   18 regex = "1.7.0"
   19 tokio = { version = "1.24.1", default-features = false, features = ["macros", "net", "rt-multi-thread"] }
   20 tempfile = "3.3.0"
   21 reqwest = { version = "0.11.13", default-features = false, features = [ "rustls-tls" ] }
   22 zip = "0.6.3"
   23 directories = "4.0.1"
   24 serde = { version = "1.0.152", features = ["derive"] }
   25 serde_json = "1.0.91"
   26 flate2 = "1.0.25"
   27 tar = "0.4.38"
   28 infer = "0.12.0"
   29 exitcode = "1.1.2"
   30 
   31 [dev-dependencies]
   32 assert_cmd = "2.0.7"
   33 rstest = "0.16.0"
   34 wiremock = "0.5.17"
   35 
   36 [profile.release]
   37 opt-level = 'z'     # Optimize for size
   38 lto = true          # Enable Link Time Optimization
   39 codegen-units = 1   # Reduce number of codegen units to increase optimizations
   40 panic = 'abort'     # Abort on panic
   41 strip = true        # Strip symbols from binary*