[package]
edition = "2024"
name = "vantage-mongodb"
version = "0.5.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MongoDB persistence backend for Vantage framework"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/romaninsh/vantage"
resolver = "2"
[features]
default = []
vista = ["dep:vantage-vista"]
[lib]
name = "vantage_mongodb"
path = "src/lib.rs"
[[test]]
name = "1_table_source"
path = "tests/1_table_source.rs"
[[test]]
name = "1_types_record"
path = "tests/1_types_record.rs"
[[test]]
name = "3_select"
path = "tests/3_select.rs"
[[test]]
name = "4_aggregates"
path = "tests/4_aggregates.rs"
[[test]]
name = "4_conditions"
path = "tests/4_conditions.rs"
[[test]]
name = "4_editable_data_set"
path = "tests/4_editable_data_set.rs"
[[test]]
name = "4_readable_data_set"
path = "tests/4_readable_data_set.rs"
[[test]]
name = "4_table_def"
path = "tests/4_table_def.rs"
[[test]]
name = "5_references"
path = "tests/5_references.rs"
[[test]]
name = "6_vista"
path = "tests/6_vista.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bson]
version = "2"
[dependencies.ciborium]
version = "0.2"
features = ["std"]
[dependencies.futures-util]
version = "0.3"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.mongodb]
version = "3"
[dependencies.paste]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.vantage-core]
version = "0.5"
[dependencies.vantage-dataset]
version = "0.5"
[dependencies.vantage-expressions]
version = "0.5"
[dependencies.vantage-table]
version = "0.5"
[dependencies.vantage-types]
version = "0.5"
[dependencies.vantage-vista]
version = "0.5"
optional = true
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.serde_yaml_ng]
version = "0.10"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.vantage-vista]
version = "0.5"