minigdb 0.1.0

An embedded property-graph database in Rust with a GQL query language, RocksDB-backed ACID storage, graph algorithms, and Python bindings
Documentation
# 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 = "minigdb"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An embedded property-graph database in Rust with a GQL query language, RocksDB-backed ACID storage, graph algorithms, and Python bindings"
documentation = "https://docs.rs/minigdb"
readme = "README.md"
keywords = [
    "graph",
    "database",
    "gql",
    "embedded",
    "rocksdb",
]
categories = [
    "database",
    "data-structures",
]
license = "MPL-2.0"
repository = "https://github.com/jerichomcleod/minigdb"

[package.metadata.docs.rs]
features = [
    "repl",
    "server",
    "gui",
]
no-default-features = true

[features]
default = [
    "repl",
    "server",
    "gui",
]
gui = [
    "server",
    "dep:axum",
]
python = [
    "pyo3",
    "dirs",
]
repl = [
    "rustyline",
    "dirs",
    "rpassword",
]
server = [
    "dep:tokio",
    "dep:sha2",
    "dirs",
]

[lib]
name = "minigdb"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "minigdb"
path = "src/main.rs"
required-features = ["repl"]

[dependencies.axum]
version = "0.7"
optional = true

[dependencies.bincode]
version = "1"

[dependencies.crc32fast]
version = "1"

[dependencies.csv]
version = "1.3"

[dependencies.dirs]
version = "5"
optional = true

[dependencies.env_logger]
version = "0.11"

[dependencies.log]
version = "0.4"

[dependencies.pest]
version = "2"

[dependencies.pest_derive]
version = "2"

[dependencies.pyo3]
version = "0.22"
features = [
    "abi3-py39",
    "extension-module",
]
optional = true

[dependencies.rocksdb]
version = "0.22"
features = [
    "snappy",
    "lz4",
    "zlib",
    "bzip2",
]
default-features = false

[dependencies.rpassword]
version = "7"
optional = true

[dependencies.rustyline]
version = "14"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "net",
    "io-util",
    "sync",
    "macros",
    "time",
    "signal",
]
optional = true

[dependencies.toml]
version = "0.8"

[dev-dependencies.insta]
version = "1"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.tempfile]
version = "3"