rust/hg-core/Cargo.toml
branchstable
changeset 49366 288de6f5d724
parent 49279 127d33e63d1a
child 49417 1bad05cfc818
equal deleted inserted replaced
49364:e8ea403b1c46 49366:288de6f5d724
     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 home = "0.5"
    16 hashbrown = { version = "0.9.1", features = ["rayon"] }
       
    17 home = "0.5.3"
    17 im-rc = "15.0"
    18 im-rc = "15.0"
    18 itertools = "0.9"
    19 itertools = "0.10.3"
    19 lazy_static = "1.4.0"
    20 lazy_static = "1.4.0"
    20 libc = "0.2"
    21 libc = "0.2"
    21 ouroboros = "0.15.0"
    22 ouroboros = "0.15.0"
    22 rand = "0.8.4"
    23 rand = "0.8.4"
    23 rand_pcg = "0.3.1"
    24 rand_pcg = "0.3.1"
    24 rand_distr = "0.4.2"
    25 rand_distr = "0.4.3"
    25 rayon = "1.3.0"
    26 rayon = "1.5.1"
    26 regex = "1.3.9"
    27 regex = "1.5.5"
    27 sha-1 = "0.9.6"
    28 sha-1 = "0.10.0"
    28 twox-hash = "1.5.0"
    29 twox-hash = "1.6.2"
    29 same-file = "1.0.6"
    30 same-file = "1.0.6"
    30 tempfile = "3.1.0"
    31 tempfile = "3.1.0"
    31 crossbeam-channel = "0.4"
    32 crossbeam-channel = "0.4"
    32 micro-timer = "0.3.0"
    33 micro-timer = "0.3.0"
    33 log = "0.4.8"
    34 log = "0.4.8"
    36 format-bytes = "0.3.0"
    37 format-bytes = "0.3.0"
    37 
    38 
    38 # 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
    39 # we have a clearer view of which backend is the fastest.
    40 # we have a clearer view of which backend is the fastest.
    40 [dependencies.flate2]
    41 [dependencies.flate2]
    41 version = "1.0.16"
    42 version = "1.0.22"
    42 features = ["zlib"]
    43 features = ["zlib"]
    43 default-features = false
    44 default-features = false
    44 
    45 
    45 [dev-dependencies]
    46 [dev-dependencies]
    46 clap = "*"
    47 clap = "2.34.0"
    47 pretty_assertions = "0.6.1"
    48 pretty_assertions = "1.1.0"