rqlite_client 0.1.0

rqlite database client with optional extra convenience
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"
rust-version = "1.71.1"
name = "rqlite_client"
version = "0.1.0"
authors = ["Markus Kolb"]
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "rqlite database client with optional extra convenience"
homepage = "https://github.com/kolbma/rs_rqlite_client/"
documentation = "https://docs.rs/rqlite_client/"
readme = "README.md"
keywords = [
    "rqlite",
    "database",
    "sql",
    "migration",
]
categories = ["database"]
license = "LGPL-2.1-only"
repository = "https://github.com/kolbma/rs_rqlite_client/"

[package.metadata]
msrv = "1.71.1"

[package.metadata.docs.rs]
all-features = true

[package.metadata.unused-deps]
allow = ["idna_adapter"]

[badges.maintenance]
status = "actively-developed"

[features]
default = [
    "monitor",
    "ureq",
    "url",
]
log = ["dep:log"]
migration = []
migration_embed = [
    "migration",
    "dep:rust-embed",
]
monitor = []
percent_encoding = ["dep:percent-encoding"]
tracing = ["dep:tracing"]
ureq = ["dep:ureq"]
ureq_charset = [
    "ureq",
    "ureq/charset",
]
ureq_socks_proxy = [
    "ureq",
    "ureq/socks-proxy",
]
ureq_tls = [
    "ureq",
    "ureq/tls",
    "ureq/native-certs",
]
ureq_webpki = [
    "ureq",
    "ureq/tls",
]
url = ["dep:url"]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.log]
version = "0.4.27"
optional = true

[dependencies.percent-encoding]
version = "2.3.2"
optional = true
default-features = false

[dependencies.rust-embed]
version = "8.7.2"
features = ["compression"]
optional = true

[dependencies.serde]
version = "1.0.219"
features = ["serde_derive"]
default-features = false

[dependencies.serde_json]
version = "1.0.143"

[dependencies.tracing]
version = "0.1.41"
optional = true

[dependencies.ureq]
version = "2.12.1"
features = [
    "gzip",
    "json",
]
optional = true

[dependencies.url]
version = "2.5.6"
optional = true

[dev-dependencies.time]
version = "0.3.41"
features = ["formatting"]

[build-dependencies.httpdate]
version = "1.0.3"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
non_ascii_idents = "warn"
rust-2021-compatibility = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_crate_dependencies = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_macros = "warn"
unused_qualifications = "warn"
unused_results = "warn"