# 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 = "2021" name = "simple-triplestore" version = "0.2.0-alpha.1" authors = ["rcythr"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple graph database for storing triples with support for custom node and edge properties." readme = "README.md" keywords = [ "database", "graph", "triple", ] categories = [ "data-structures", "database-implementations", ] license = "Apache-2.0" repository = "https://github.com/rcythr/simple-triplestore" [lib] name = "simple_triplestore" path = "src/lib.rs" [[bench]] name = "benchmark" path = "benches/benchmark.rs" harness = false [dependencies.bincode] version = "1.3.3" optional = true [dependencies.itertools] version = "0.13.0" [dependencies.serde] version = "1.0.204" optional = true [dependencies.sled] version = "0.34.7" optional = true [dependencies.ulid] version = "1.1.3" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.serde] version = "1.0.204" features = ["derive"] [dev-dependencies.tempdir] version = "0.3.7" [features] default = [ "sled", "rdf", ] rdf = [] sled = [ "dep:sled", "dep:serde", "ulid/serde", "dep:bincode", ]