real-rs 0.1.0

Universal query engine with relational algebra - compile the same query to PostgreSQL, SQLite, MongoDB, and YottaDB
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 = "real-rs"
version = "0.1.0"
authors = ["Your Name <your.email@example.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal query engine with relational algebra - compile the same query to PostgreSQL, SQLite, MongoDB, and YottaDB"
homepage = "https://github.com/yourusername/real-rs"
documentation = "https://docs.rs/real-rs"
readme = "README.md"
keywords = [
    "database",
    "query",
    "sql",
    "relational-algebra",
    "universal",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/real-rs"

[features]
backend-mongodb = ["dep:mongodb"]
backend-postgres = [
    "dep:postgres",
    "dep:bytes",
]
backend-sqlite = ["dep:rusqlite"]
backend-yottadb = []
default = []

[lib]
name = "real_rs"
path = "src/lib.rs"

[[example]]
name = "cross_backend_demo"
path = "examples/cross_backend_demo.rs"

[[example]]
name = "pooling_migrations_demo"
path = "examples/pooling_migrations_demo.rs"

[[example]]
name = "postgres_demo"
path = "examples/postgres_demo.rs"
required-features = ["backend-postgres"]

[[example]]
name = "postgres_simple"
path = "examples/postgres_simple.rs"

[[example]]
name = "query_examples"
path = "examples/query_examples.rs"

[[example]]
name = "type_safety"
path = "examples/type_safety.rs"

[[example]]
name = "universal_query"
path = "examples/universal_query.rs"
required-features = []

[dependencies.bytes]
version = "1.11"
optional = true

[dependencies.mongodb]
version = "2.8"
optional = true

[dependencies.postgres]
version = "0.19"
optional = true

[dependencies.rusqlite]
version = "0.31"
optional = true

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.tokio]
version = "1"
features = ["full"]