git-bug 0.2.0

A rust library for interfacing with git-bug repositories
Documentation
# git-bug-rs - A rust library for interfacing with git-bug repositories
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of git-bug-rs/git-gub.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/agpl.txt>.

[package]
authors.workspace = true
categories = []
description = "A rust library for interfacing with git-bug repositories"
edition.workspace = true
keywords = []
license.workspace = true
name = "git-bug"
repository.workspace = true
rust-version.workspace = true
version.workspace = true

[lints]
workspace = true

[dependencies]
base64 = "0.22.1"
chrono = "0.4.41"
faster-hex = { version = "0.10.0", default-features = false }
gix = { workspace = true, features = ["serde"] }
log = "0.4.27"
postcard = { version = "1.1.1", default-features = false, features = ["alloc"] }
redb = "2.6.0"
serde = { version = "1.0.219", features = ["derive"] }
sha2 = "0.10.9"
simd-json = { version = "0.15.1", default-features = false, features = [
  "runtime-detection",
] }
thiserror = "2.0.12"
url = { workspace = true, features = ["serde"] }

[dev-dependencies]
pretty_assertions = { version = "1.4.1", default-features = true }

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