git-meta-lib 0.1.11

Library for attaching and exchanging structured metadata in Git repositories (serialize/materialize, SQLite store, merge).
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 = "git-meta-lib"
version = "0.1.11"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for attaching and exchanging structured metadata in Git repositories (serialize/materialize, SQLite store, merge)."
documentation = "https://docs.rs/git-meta-lib"
readme = "README.md"
keywords = [
    "git",
    "metadata",
    "gix",
    "sqlite",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/git-meta/git-meta"

[features]
internal = []

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

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

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

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

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

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

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

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

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

[dependencies.gix]
version = "0.84.0"
features = [
    "sha1",
    "revision",
    "merge",
    "tree-editor",
    "blob-diff",
]
default-features = false

[dependencies.rusqlite]
version = ">=0.33,<0.40"
features = ["bundled"]

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

[dependencies.serde_json]
version = "1"

[dependencies.sha1]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.time]
version = "0.3"
features = [
    "formatting",
    "parsing",
    "macros",
]

[dev-dependencies.gix]
version = "0.84.0"
features = [
    "sha1",
    "revision",
    "merge",
    "tree-editor",
    "blob-diff",
]
default-features = false

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

[lints.clippy]
await_holding_lock = "warn"
cloned_instead_of_copied = "warn"
dbg_macro = "warn"
empty_enums = "warn"
enum_glob_use = "warn"
equatable_if_let = "warn"
exit = "warn"
expect_used = "deny"
filter_map_next = "warn"
fn_params_excessive_bools = "warn"
if_let_mutex = "warn"
implicit_clone = "warn"
imprecise_flops = "warn"
inefficient_to_string = "warn"
linkedlist = "warn"
lossy_float_literal = "warn"
macro_use_imports = "warn"
manual_let_else = "warn"
map_unwrap_or = "warn"
match_same_arms = "warn"
match_wildcard_for_single_variants = "warn"
mem_forget = "warn"
must_use_candidate = "warn"
needless_borrow = "warn"
needless_continue = "warn"
needless_pass_by_ref_mut = "warn"
needless_pass_by_value = "warn"
option_option = "warn"
redundant_clone = "warn"
redundant_closure_for_method_calls = "warn"
ref_option = "warn"
rest_pat_in_fully_bound_structs = "warn"
return_self_not_must_use = "warn"
semicolon_if_nothing_returned = "warn"
single_match_else = "warn"
suboptimal_flops = "warn"
todo = "warn"
trivially_copy_pass_by_ref = "warn"
uninlined_format_args = "warn"
unnested_or_patterns = "warn"
unused_self = "warn"
unwrap_used = "deny"
verbose_file_reads = "warn"

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
private_bounds = "warn"
private_interfaces = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"