github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/sawtooth-core-master/sdk/rust/Cargo.toml (about)

     1  # Copyright 2017 Intel Corporation
     2  #
     3  # Licensed under the Apache License, Version 2.0 (the "License");
     4  # you may not use this file except in compliance with the License.
     5  # You may obtain a copy of the License at
     6  #
     7  #     http://www.apache.org/licenses/LICENSE-2.0
     8  #
     9  # Unless required by applicable law or agreed to in writing, software
    10  # distributed under the License is distributed on an "AS IS" BASIS,
    11  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  # See the License for the specific language governing permissions and
    13  # limitations under the License.
    14  # ------------------------------------------------------------------------------
    15  
    16  [package]
    17  name = "sawtooth_sdk"
    18  version = "0.1.0"
    19  authors = ["Bitwise IO, Inc.", "Intel Corporation"]
    20  build = "build.rs"
    21  
    22  [features]
    23  default = ["pem"]
    24  # Add support for loading PEM encoded private keys
    25  pem = []
    26  
    27  [dependencies]
    28  hex = "0.3"
    29  protobuf="2.0"
    30  secp256k1 = "0.7.1"
    31  rand = "0.4.2"
    32  rust-crypto = "0.2.36"
    33  zmq = { git = "https://github.com/erickt/rust-zmq", branch = "release/v0.8" }
    34  uuid = { version = "0.5", features = ["v4"] }
    35  log = "0.3"
    36  libc = "0.2"
    37  ctrlc = { version = "3.0", features = ["termination"] }
    38  
    39  [dev-dependencies]
    40  env_logger = "0.3"
    41  
    42  [build-dependencies]
    43  cc = "1.0"
    44  protoc-rust = "2.0"
    45  glob = "0.2"