rust/hg-core/Cargo.toml
changeset 48953 ec8d9b5a5e7c
parent 48950 11c0411bf4e2
child 49005 12adf8c695ed
equal deleted inserted replaced
48952:8848c3453661 48953:ec8d9b5a5e7c
     7 
     7 
     8 [lib]
     8 [lib]
     9 name = "hg"
     9 name = "hg"
    10 
    10 
    11 [dependencies]
    11 [dependencies]
    12 bitflags = "1.2"
    12 bitflags = "1.3.2"
    13 bytes-cast = "0.2"
    13 bytes-cast = "0.2.0"
    14 byteorder = "1.3.4"
    14 byteorder = "1.4.3"
    15 derive_more = "0.99"
    15 derive_more = "0.99.17"
    16 hashbrown = {version = "0.9.1", features = ["rayon"]}
    16 hashbrown = { version = "0.9.1", features = ["rayon"] }
    17 home = "0.5"
    17 home = "0.5.3"
    18 im-rc = "15.0.*"
    18 im-rc = "15.0.0"
    19 itertools = "0.9"
    19 itertools = "0.10.3"
    20 lazy_static = "1.4.0"
    20 lazy_static = "1.4.0"
    21 libc = "0.2"
    21 libc = "0.2.119"
    22 rand = "0.8.4"
    22 rand = "0.8.5"
    23 rand_pcg = "0.3.1"
    23 rand_pcg = "0.3.1"
    24 rand_distr = "0.4.2"
    24 rand_distr = "0.4.3"
    25 rayon = "1.3.0"
    25 rayon = "1.5.1"
    26 regex = "1.3.9"
    26 regex = "1.5.5"
    27 sha-1 = "0.9.6"
    27 sha-1 = "0.10.0"
    28 twox-hash = "1.5.0"
    28 twox-hash = "1.6.2"
    29 same-file = "1.0.6"
    29 same-file = "1.0.6"
    30 stable_deref_trait = "1.2.0"
    30 stable_deref_trait = "1.2.0"
    31 tempfile = "3.1.0"
    31 tempfile = "3.3.0"
    32 crossbeam-channel = "0.4"
    32 crossbeam-channel = "0.5.2"
    33 micro-timer = "0.3.0"
    33 micro-timer = "0.4.0"
    34 log = "0.4.8"
    34 log = "0.4.14"
    35 memmap2 = {version = "0.4", features = ["stable_deref_trait"]}
    35 memmap2 = { version = "0.5.3", features = ["stable_deref_trait"] }
    36 zstd = "0.5.3"
    36 zstd = "0.5.3"
    37 format-bytes = "0.3.0"
    37 format-bytes = "0.3.0"
    38 
    38 
    39 # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until
    39 # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until
    40 # we have a clearer view of which backend is the fastest.
    40 # we have a clearer view of which backend is the fastest.
    41 [dependencies.flate2]
    41 [dependencies.flate2]
    42 version = "1.0.16"
    42 version = "1.0.22"
    43 features = ["zlib"]
    43 features = ["zlib"]
    44 default-features = false
    44 default-features = false
    45 
    45 
    46 [dev-dependencies]
    46 [dev-dependencies]
    47 clap = "*"
    47 clap = "2.34.0"
    48 pretty_assertions = "0.6.1"
    48 pretty_assertions = "1.1.0"