brylix 0.2.8

GraphQL framework for AWS Lambda with SeaORM and multi-tenant support
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 = "brylix"
version = "0.2.8"
authors = ["Brylix Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GraphQL framework for AWS Lambda with SeaORM and multi-tenant support"
readme = "README.md"
keywords = [
    "graphql",
    "lambda",
    "seaorm",
    "rust",
    "serverless",
]
categories = [
    "web-programming",
    "database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/brylix/framework"

[features]
admin-override = []
default = [
    "mysql",
    "playground",
]
email = ["lettre"]
full = [
    "mysql",
    "postgres",
    "playground",
    "multi-tenant",
    "email",
    "s3",
    "admin-override",
]
multi-tenant = []
mysql = [
    "sea-orm/sqlx-mysql",
    "sea-orm-migration/sqlx-mysql",
]
playground = ["async-graphql/playground"]
postgres = [
    "sea-orm/sqlx-postgres",
    "sea-orm-migration/sqlx-postgres",
]
s3 = [
    "aws-config",
    "aws-sdk-s3",
    "aws-credential-types",
]

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

[dependencies.anyhow]
version = "1"

[dependencies.argon2]
version = "0.5"

[dependencies.async-graphql]
version = "7"
features = [
    "tracing",
    "chrono",
]
default-features = false

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

[dependencies.aws-config]
version = "1.5"
features = ["behavior-version-latest"]
optional = true

[dependencies.aws-credential-types]
version = "1.2"
optional = true

[dependencies.aws-sdk-s3]
version = "1.65"
optional = true

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

[dependencies.dotenvy]
version = "0.15"

[dependencies.futures]
version = "0.3"

[dependencies.http]
version = "1"

[dependencies.jsonwebtoken]
version = "10"
features = ["rust_crypto"]

[dependencies.lambda_http]
version = "1.0"

[dependencies.lambda_runtime]
version = "1.0"

[dependencies.lazy_static]
version = "1"

[dependencies.lettre]
version = "0.11"
features = [
    "tokio1-rustls-tls",
    "builder",
    "smtp-transport",
    "hostname",
]
optional = true
default-features = false

[dependencies.multer]
version = "3"

[dependencies.openssl]
version = "0.10"
features = ["vendored"]

[dependencies.rand]
version = "0.9"

[dependencies.regex]
version = "1"

[dependencies.sea-orm]
version = "1.1"
features = [
    "runtime-tokio-rustls",
    "macros",
]

[dependencies.sea-orm-migration]
version = "1.1"
features = ["runtime-tokio-rustls"]

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
]

[dependencies.tokio-util]
version = "0.7"
features = ["codec"]

[dependencies.tracing]
version = "0.1"

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