Skip to content
Snippets Groups Projects
Cargo.toml 726 B
Newer Older
  • Learn to ignore specific revisions
  • Simon Sapin's avatar
    Simon Sapin committed
    [package]
    name = "megafine"
    
    description = "A tool for benchmarking Mercurial"
    repository = "https://foss.heptapod.net/octobus/megafine"
    license = "MIT OR Apache-2.0"
    
    Simon Sapin's avatar
    Simon Sapin committed
    version = "0.1.0"
    edition = "2021"
    
    rust-version = "1.56"
    
    Simon Sapin's avatar
    Simon Sapin committed
    
    [dependencies]
    
    dialoguer = { version = "0.9", default-features = false }
    
    Simon Sapin's avatar
    Simon Sapin committed
    indicatif = "0.16"
    
    
    # TODO: use `std::thread::available_parallelism` when available
    # https://github.com/rust-lang/rust/issues/74479
    num_cpus = "1.13"
    
    
    reqwest = { version = "0.11", features = ["blocking"] }
    
    serde = { version = "1.0", features = ["derive"] }
    
    Simon Sapin's avatar
    Simon Sapin committed
    tar = "0.4"
    
    zstd = { version = "0.9", features = ["zstdmt"] }