toolu-orm 0.1.2

Schema-driven Rust ORM: migrations, type-safe query builders and drivers for libsql, rusqlite and Postgres
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 = "toolu-orm"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Schema-driven Rust ORM: migrations, type-safe query builders and drivers for libsql, rusqlite and Postgres"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Falconiere/toolu-orm"

[features]
default = []
libsql = [
    "toolu-orm-core/libsql",
    "toolu-orm-macros/libsql",
    "toolu-orm-query/libsql",
    "toolu-orm-connection/libsql",
]
postgres = [
    "toolu-orm-core/postgres",
    "toolu-orm-macros/postgres",
    "toolu-orm-query/postgres",
    "toolu-orm-connection/postgres",
]
rusqlite = [
    "toolu-orm-core/rusqlite",
    "toolu-orm-macros/rusqlite",
    "toolu-orm-query/rusqlite",
    "toolu-orm-connection/rusqlite",
]

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

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

[dependencies.toolu-orm-connection]
version = "0.1.2"
default-features = false

[dependencies.toolu-orm-core]
version = "0.1.2"
default-features = false

[dependencies.toolu-orm-macros]
version = "0.1.2"
default-features = false

[dependencies.toolu-orm-query]
version = "0.1.2"
default-features = false

[lints.clippy]
cast_possible_truncation = "deny"
cast_possible_wrap = "deny"
cast_sign_loss = "deny"
checked_conversions = "deny"
clone_on_ref_ptr = "deny"
cloned_instead_of_copied = "deny"
cognitive_complexity = "deny"
disallowed_methods = "deny"
expect_used = "deny"
flat_map_option = "deny"
fn_params_excessive_bools = "deny"
if_not_else = "warn"
implicit_clone = "deny"
indexing_slicing = "deny"
large_types_passed_by_value = "deny"
lossy_float_literal = "deny"
manual_let_else = "deny"
map_err_ignore = "deny"
match_same_arms = "warn"
missing_docs_in_private_items = "allow"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
module_name_repetitions = "allow"
needless_pass_by_value = "deny"
panic = "deny"
redundant_clone = "deny"
redundant_else = "warn"
result_large_err = "deny"
similar_names = "warn"
single_match_else = "deny"
str_to_string = "deny"
struct_excessive_bools = "deny"
todo = "deny"
too_many_arguments = "deny"
too_many_lines = "deny"
trivially_copy_pass_by_ref = "deny"
unimplemented = "deny"
unnecessary_wraps = "deny"
unreachable = "deny"
unwrap_used = "deny"
verbose_file_reads = "deny"
wildcard_enum_match_arm = "deny"

[lints.rust]
deprecated = "deny"
unsafe_code = "deny"
unused_imports = "deny"
unused_must_use = "deny"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1