this-rs 0.0.6

Framework for building complex multi-entity REST and GraphQL APIs with many relationships
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.async-graphql]
optional = true
version = "7"

[dependencies.async-graphql-axum]
optional = true
version = "7"

[dependencies.async-trait]
version = "0.1"

[dependencies.aws-sdk-dynamodb]
optional = true
version = "1.93"

[dependencies.axum]
features = ["macros"]
version = "0.8"

[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.futures]
version = "0.3"

[dependencies.graphql-parser]
optional = true
version = "0.4"

[dependencies.regex]
version = "1.10"

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

[dependencies.serde_dynamo]
optional = true
version = "4.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["full"]
version = "1.40"

[dependencies.tower]
version = "0.5"

[dependencies.tower-http]
features = ["trace", "cors"]
version = "0.6"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1.10"

[dependencies.validator]
features = ["derive"]
version = "0.20"

[dev-dependencies.axum-test]
version = "18.1"

[dev-dependencies.tokio-test]
version = "0.4"

[[example]]
name = "full_api"
path = "examples/full_api/main.rs"

[[example]]
name = "microservice"
path = "examples/microservice/main.rs"

[[example]]
name = "microservice_graphql"
path = "examples/microservice/main_graphql.rs"
required-features = ["graphql"]

[[example]]
name = "simple_api"
path = "examples/simple_api/main.rs"

[features]
all = ["in-memory", "dynamodb", "graphql"]
default = ["in-memory"]
dynamodb = ["aws-sdk-dynamodb", "serde_dynamo"]
graphql = ["async-graphql", "async-graphql-axum", "graphql-parser"]
in-memory = []

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

[package]
authors = ["Riviere Théotime <t@ffs.holdings>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming", "web-programming::http-server", "database"]
description = "Framework for building complex multi-entity REST and GraphQL APIs with many relationships"
edition = "2024"
keywords = ["entity", "relationship", "rest", "graphql", "api"]
license = "MIT OR Apache-2.0"
name = "this-rs"
readme = "README.md"
repository = "https://github.com/this-rs/this"
resolver = "2"
version = "0.0.6"

[[test]]
name = "config_merging_tests"
path = "tests/config_merging_tests.rs"