git-sec 0.1.1

A WIP crate of the gitoxide project providing a shared trust model
Documentation
[package]
name = "git-sec"
version = "0.1.1"
repository = "https://github.com/Byron/gitoxide"
license = "MIT/Apache-2.0"
description = "A WIP crate of the gitoxide project providing a shared trust model"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2018"
include = ["src/**/*", "CHANGELOG.md"]

[lib]
doctest = false

[features]
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
serde1 = [ "serde" ]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.114", optional = true, default-features = false, features = ["std", "derive"] }
bitflags = "1.3.2"
thiserror = { version = "1.0.26", optional = true }

[target.'cfg(not(windows))'.dependencies]
libc = "0.2.123"

[target.'cfg(windows)'.dependencies]
windows = { version = "0.36.0", features = [ "alloc",
    "Win32_Foundation",
    "Win32_Security_Authorization",
    "Win32_Storage_FileSystem",
    "Win32_System_Memory",
    "Win32_System_Threading"
] }

[dev-dependencies]
tempfile = "3.3.0"