# 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] name = "dlc-trie" version = "0.7.0" authors = ["Crypto Garage"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Data structures for storage and retrival of numerical Discreet 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-trie" resolver = "2" [lib] name = "dlc_trie" path = "src/lib.rs" [dependencies.bitcoin] version = "0.32.2" default-features = false [dependencies.dlc] version = "0.7.0" default-features = false [dependencies.rayon] version = "1.5" optional = true [dependencies.secp256k1-zkp] version = "0.11.0" [dependencies.serde] version = "1.0" features = ["derive"] optional = true default-features = false [features] default = ["std"] no-std = ["dlc/no-std"] parallel = ["rayon"] std = [ "dlc/std", "bitcoin/std", ] use-serde = [ "serde", "dlc/use-serde", ]