rust/hgcli/Cargo.toml
changeset 44637 02f66b23cba3
parent 44636 c70bcaf7927b
child 44638 af739894a4c1
equal deleted inserted replaced
44636:c70bcaf7927b 44637:02f66b23cba3
     1 [package]
       
     2 name = "hgcli"
       
     3 version = "0.1.0"
       
     4 authors = ["Gregory Szorc <gregory.szorc@gmail.com>"]
       
     5 license = "GPL-2.0"
       
     6 
       
     7 build = "build.rs"
       
     8 
       
     9 [[bin]]
       
    10 name = "hg"
       
    11 path = "src/main.rs"
       
    12 
       
    13 [features]
       
    14 # localdev: detect Python in PATH and use files from source checkout.
       
    15 default = ["localdev"]
       
    16 localdev = []
       
    17 
       
    18 [dependencies]
       
    19 libc = "0.2.34"
       
    20 
       
    21 # We currently use a custom build of cpython and python27-sys with the
       
    22 # following changes:
       
    23 # * GILGuard call of prepare_freethreaded_python() is removed.
       
    24 # TODO switch to official release when our changes are incorporated.
       
    25 [dependencies.cpython]
       
    26 version = "0.1"
       
    27 default-features = false
       
    28 features = ["python27-sys"]
       
    29 git = "https://github.com/indygreg/rust-cpython.git"
       
    30 rev = "c90d65cf84abfffce7ef54476bbfed56017a2f52"
       
    31 
       
    32 [dependencies.python27-sys]
       
    33 version = "0.1.2"
       
    34 git = "https://github.com/indygreg/rust-cpython.git"
       
    35 rev = "c90d65cf84abfffce7ef54476bbfed56017a2f52"