# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "dlc-manager" version = "0.7.0" authors = ["Crypto Garage"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Creation and handling of Discrete Log Contracts (DLC)." homepage = "https://github.com/p2pderivatives/rust-dlc" readme = "README.md" license-file = "LICENSE" repository = "https://github.com/p2pderivatives/rust-dlc/tree/master/dlc-manager" resolver = "2" [lib] name = "dlc_manager" path = "src/lib.rs" [[test]] name = "channel_execution_tests" path = "tests/channel_execution_tests.rs" [[test]] name = "manager_execution_tests" path = "tests/manager_execution_tests.rs" [[test]] name = "test_utils" path = "tests/test_utils.rs" [[bench]] name = "benchmarks" path = "benches/benchmarks.rs" harness = false [dependencies.async-trait] version = "0.1.50" [dependencies.bitcoin] version = "0.32.2" default-features = false [dependencies.dlc] version = "0.7.0" default-features = false [dependencies.dlc-messages] version = "0.7.0" default-features = false [dependencies.dlc-trie] version = "0.7.0" default-features = false [dependencies.hex] version = "0.1" package = "hex-conservative" [dependencies.lightning] version = "0.0.125" features = ["grind_signatures"] default-features = false [dependencies.log] version = "0.4.14" [dependencies.rand_chacha] version = "0.3.1" optional = true [dependencies.secp256k1-zkp] version = "0.11.0" [dependencies.serde] version = "1.0" optional = true [dev-dependencies.bitcoincore-rpc] version = "0.19" [dev-dependencies.bitcoincore-rpc-json] version = "0.19" [dev-dependencies.criterion] version = "0.4.0" [dev-dependencies.env_logger] version = "0.9.1" [dev-dependencies.secp256k1-zkp] version = "0.11.0" features = [ "hashes", "rand", "rand-std", "global-context", "serde", ] [dev-dependencies.serde] version = "1.0" [dev-dependencies.serde_json] version = "1.0" [features] default = ["std"] fuzztarget = ["rand_chacha"] parallel = ["dlc-trie/parallel"] std = [ "dlc/std", "dlc-messages/std", "dlc-trie/std", "bitcoin/std", "lightning/std", ] use-serde = [ "serde", "dlc/use-serde", "dlc-messages/use-serde", "dlc-trie/use-serde", ]