[package]
edition = "2018"
name = "polodb_core"
version = "5.3.0"
authors = ["Vincent Chan <okcdz@diverse.space>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An embedded document database"
readme = "README.md"
keywords = [
"database",
"embedded",
"cross-platform",
]
license = "Apache-2.0"
repository = "https://github.com/PoloDB/PoloDB"
resolver = "2"
[lib]
name = "polodb_core"
path = "lib.rs"
[[test]]
name = "test_aggregate"
path = "tests/test_aggregate.rs"
[[test]]
name = "test_all"
path = "tests/test_all.rs"
[[test]]
name = "test_collection"
path = "tests/test_collection.rs"
[[test]]
name = "test_db"
path = "tests/test_db.rs"
[[test]]
name = "test_delete"
path = "tests/test_delete.rs"
[[test]]
name = "test_find"
path = "tests/test_find.rs"
[[test]]
name = "test_in"
path = "tests/test_in.rs"
[[test]]
name = "test_index"
path = "tests/test_index.rs"
[[test]]
name = "test_insert"
path = "tests/test_insert.rs"
[[test]]
name = "test_regex"
path = "tests/test_regex.rs"
[[test]]
name = "test_session"
path = "tests/test_session.rs"
[[test]]
name = "test_update"
path = "tests/test_update.rs"
[dependencies.bson]
version = "2.14.0"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.getrandom]
version = "0.2.3"
[dependencies.indexmap]
version = "2.4.0"
features = ["serde"]
[dependencies.libc]
version = "0.2"
[dependencies.polodb-librocksdb-sys]
version = "9.0.0-alpha.2"
features = [
"default",
"mt_static",
]
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0.207"
features = ["rc"]
[dependencies.thiserror]
version = "1.0.63"
[dependencies.uuid]
version = "1.10.0"
features = [
"atomic",
"v1",
"v4",
"rng",
]
[dev-dependencies.csv]
version = "1.2.1"
[target."cfg(windows)".dependencies.winapi]
version = "0.3.9"
features = [
"fileapi",
"namedpipeapi",
]