[package]
edition = "2024"
name = "gluesql-git-storage"
version = "0.20.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!"
documentation = "https://docs.rs/gluesql/"
readme = false
license = "Apache-2.0"
repository = "https://github.com/gluesql/gluesql"
resolver = "2"
[features]
test-git-remote = []
[lib]
name = "gluesql_git_storage"
path = "src/lib.rs"
[[test]]
name = "git_storage_csv"
path = "tests/git_storage_csv.rs"
[[test]]
name = "git_storage_file"
path = "tests/git_storage_file.rs"
[[test]]
name = "git_storage_json"
path = "tests/git_storage_json.rs"
[[test]]
name = "pull_and_push"
path = "tests/pull_and_push.rs"
[dependencies.gluesql-core]
version = "0.20.0"
[dependencies.gluesql-csv-storage]
version = "0.20.0"
[dependencies.gluesql-file-storage]
version = "0.20.0"
[dependencies.gluesql-json-storage]
version = "0.20.0"
[dependencies.strum_macros]
version = "0.26.4"
[dev-dependencies.test-suite]
version = "0.20.0"
package = "gluesql-test-suite"
[dev-dependencies.uuid]
version = "1.10.0"
features = ["v7"]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
enum_glob_use = "allow"
float_cmp = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "deny"
priority = -1