d1-orm 0.1.1

A lightweight ORM/SQL builder for Cloudflare D1 and SQLite
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 = "d1-orm"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight ORM/SQL builder for Cloudflare D1 and SQLite"
readme = "README.md"
keywords = [
    "orm",
    "cloudflare-d1",
    "sqlite",
    "sql-builder",
    "wasm",
]
categories = [
    "database",
    "wasm",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/Asutorufa/housou/tree/master/crates/d1-orm"
resolver = "3"

[features]
d1 = [
    "dep:worker",
    "dep:js-sys",
]
default = []
sqlite = [
    "dep:rusqlite",
    "dep:hex",
]

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

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "migration"
path = "examples/migration.rs"

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

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

[dependencies.hex]
version = "0.4"
optional = true

[dependencies.js-sys]
version = "0.3"
optional = true

[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
optional = true

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

[dependencies.serde_json]
version = "1.0"

[dependencies.worker]
version = "0.7.4"
features = ["d1"]
optional = true

[dev-dependencies.tokio]
version = "1.0"
features = [
    "macros",
    "rt-multi-thread",
]