# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "recollection" version = "0.1.1-beta.0" description = "implementations and reimplementations of common data structures and algorithms, and other personally commonly used utilities" homepage = "https://clp.is/projects/recollection" documentation = "https://docs.rs/recollection" readme = "README.md" keywords = ["algorithms"] license = "MIT" repository = "https://github.com/clpi/recollection" [lib] name = "recollection" crate-type = ["cdylib", "rlib"] path = "src/lib.rs" [[bin]] name = "recollection" path = "src/bin/main.rs" [[test]] name = "graph" path = "tests/data/graph.rs" [[bench]] name = "graph" path = "benches/graph/lib.rs" harness = false [dependencies.rand] version = "0.8.4" [dependencies.serde] version = "1.0.126" features = ["derive"] [dependencies.serde_json] version = "1.0.65" [dev-dependencies.criterion] version = "0.3.5" [dev-dependencies.tempfile] version = "3.2.0" [features] chain = [] channel = [] config = [] default = ["channel", "graph", "chain", "config", "fs"] fs = [] graph = []