[package]
edition = "2021"
rust-version = "1.88"
name = "parse-rust-server"
version = "0.2.1"
build = false
exclude = ["logs/"]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust-native, embeddable implementation of the Parse Server API."
homepage = "https://github.com/neurosynq/parse-rust"
readme = "README.md"
keywords = [
"parse-server",
"parse-platform",
"backend",
"mongodb",
"baas",
]
categories = [
"web-programming::http-server",
"database",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/neurosynq/parse-rust"
[lib]
name = "parse_rust_server"
path = "src/lib.rs"
[[test]]
name = "auth_flow"
path = "tests/auth_flow.rs"
[[test]]
name = "authorization"
path = "tests/authorization.rs"
[[test]]
name = "batch"
path = "tests/batch.rs"
[[test]]
name = "classes"
path = "tests/classes.rs"
[[test]]
name = "cors"
path = "tests/cors.rs"
[[test]]
name = "default_acl"
path = "tests/default_acl.rs"
[[test]]
name = "ip_allowlist_differential"
path = "tests/ip_allowlist_differential.rs"
[[test]]
name = "master_key_ips"
path = "tests/master_key_ips.rs"
[[test]]
name = "schemas"
path = "tests/schemas.rs"
[[test]]
name = "server_info"
path = "tests/server_info.rs"
[dependencies.axum]
version = "0.7"
[dependencies.form_urlencoded]
version = "1"
[dependencies.http]
version = "1"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.parse-rust-auth]
version = "0.2.1"
[dependencies.parse-rust-core]
version = "0.2.1"
[dependencies.parse-rust-mongo]
version = "0.2.1"
[dependencies.parse-rust-rest]
version = "0.2.1"
[dependencies.parse-rust-schema]
version = "0.2.1"
[dependencies.parse-rust-storage]
version = "0.2.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"signal",
]
[dev-dependencies.bson]
version = "2"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.mongodb]
version = "3"
[dev-dependencies.parse-rust-mongo]
version = "0.2.1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"signal",
"rt-multi-thread",
"macros",
"net",
"io-util",
]
[dev-dependencies.tower]
version = "0.5"