rust/hg-core/Cargo.toml
changeset 44305 d8d4fa9a7f18
parent 44301 4caac36c66bc
child 44386 8f7c6656ac79
equal deleted inserted replaced
44304:2fe89bec8011 44305:d8d4fa9a7f18
     2 name = "hg-core"
     2 name = "hg-core"
     3 version = "0.1.0"
     3 version = "0.1.0"
     4 authors = ["Georges Racinet <gracinet@anybox.fr>"]
     4 authors = ["Georges Racinet <gracinet@anybox.fr>"]
     5 description = "Mercurial pure Rust core library, with no assumption on Python bindings (FFI)"
     5 description = "Mercurial pure Rust core library, with no assumption on Python bindings (FFI)"
     6 edition = "2018"
     6 edition = "2018"
       
     7 build = "build.rs"
     7 
     8 
     8 [lib]
     9 [lib]
     9 name = "hg"
    10 name = "hg"
    10 
    11 
    11 [dependencies]
    12 [dependencies]
    12 byteorder = "1.3.1"
    13 byteorder = "1.3.1"
    13 hex = "0.4.0"
    14 hex = "0.4.0"
    14 lazy_static = "1.3.0"
    15 lazy_static = "1.3.0"
       
    16 libc = { version = "0.2.66", optional = true }
    15 memchr = "2.2.0"
    17 memchr = "2.2.0"
    16 rand = "0.6.5"
    18 rand = "0.6.5"
    17 rand_pcg = "0.1.1"
    19 rand_pcg = "0.1.1"
    18 rayon = "1.3.0"
    20 rayon = "1.3.0"
    19 regex = "1.1.0"
    21 regex = "1.1.0"
    21 same-file = "1.0.6"
    23 same-file = "1.0.6"
    22 
    24 
    23 [dev-dependencies]
    25 [dev-dependencies]
    24 tempfile = "3.1.0"
    26 tempfile = "3.1.0"
    25 pretty_assertions = "0.6.1"
    27 pretty_assertions = "0.6.1"
       
    28 
       
    29 [build-dependencies]
       
    30 cc = { version = "1.0.48", optional = true }
       
    31 
       
    32 [features]
       
    33 default = []
       
    34 with-re2 = ["cc", "libc"]