forgedb 0.2.0

ForgeDB — an application database generator. Compiles a declarative .forge schema into tailored Rust database code, a TypeScript SDK, and a REST API.
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 = "2024"
name = "forgedb"
version = "0.2.0"
authors = ["Collin Kokotas"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ForgeDB — an application database generator. Compiles a declarative .forge schema into tailored Rust database code, a TypeScript SDK, and a REST API."
homepage = "https://github.com/hoodiecollin/forgedb"
readme = "README.md"
keywords = [
    "database",
    "codegen",
    "orm",
    "cli",
    "generator",
]
categories = [
    "database",
    "command-line-utilities",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hoodiecollin/forgedb"
resolver = "2"

[package.metadata.wix]
upgrade-guid = "5521CC3D-47B3-47B7-BC83-24BDB265C090"
path-guid = "1F1F428E-E518-46CE-989F-600C9F5CB2FA"
license = false
eula = false

[features]
default = []
lsp = ["dep:forgedb-lsp-server"]

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

[[bin]]
name = "forgedb"
path = "src/main.rs"

[[bin]]
name = "forgedb-lsp"
path = "src/bin/forgedb-lsp.rs"
required-features = ["lsp"]

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.4"
features = [
    "derive",
    "cargo",
]

[dependencies.colored]
version = "3.1"

[dependencies.ctrlc]
version = "3.4"

[dependencies.forgedb-backup]
version = "0.2.0"

[dependencies.forgedb-codegen]
version = "0.2.1"

[dependencies.forgedb-compaction]
version = "0.1.0"

[dependencies.forgedb-coordinator]
version = "0.2.0"

[dependencies.forgedb-lsp-server]
version = "0.1.0"
optional = true

[dependencies.forgedb-migrations]
version = "0.2.0"

[dependencies.forgedb-parser]
version = "0.2.0"

[dependencies.forgedb-watcher]
version = "0.2.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.toml]
version = "0.8"

[dev-dependencies.forgedb-compaction]
version = "0.1.0"

[dev-dependencies.forgedb-lsp-server]
version = "0.1.0"

[dev-dependencies.forgedb-migrations]
version = "0.2.0"

[dev-dependencies.forgedb-parser]
version = "0.2.0"

[dev-dependencies.forgedb-query-params]
version = "0.1.0"

[dev-dependencies.forgedb-validation]
version = "0.2.0"

[dev-dependencies.forgedb-wal]
version = "0.2.0"

[dev-dependencies.forgedb-watcher]
version = "0.2.0"

[dev-dependencies.insta]
version = "1.40"
features = ["yaml"]

[dev-dependencies.tempfile]
version = "3.8"

[profile.dist]
lto = "thin"
inherits = "release"