[package]
edition = "2021"
rust-version = "1.88"
name = "onevcs-testing"
version = "0.1.2"
authors = ["Nick DeRobertis"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "In-memory and file-backed implementations of onevcs's Vcs and RemoteHost interfaces, for driving a real onevcs in a test."
homepage = "https://github.com/nickderobertis/onevcs"
readme = "README.md"
keywords = [
"testing",
"git",
"github",
"vcs",
"agent",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/nickderobertis/onevcs"
[lib]
name = "onevcs_testing"
path = "src/lib.rs"
[dependencies.onevcs]
version = "0.2.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.sha2]
version = "0.10"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"macros",
]
[dependencies.url]
version = "2"
features = ["serde"]
[dev-dependencies.clap]
version = "4.6"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3"