kxio/Cargo.toml
ForgeJo Action. See: https://git.kemitix.net/kemitix/rust 58436b57d0 chore: release
Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust <action@git.kemitix.net>
2024-11-10 12:42:54 +00:00

39 lines
924 B
TOML

[package]
name = "kxio"
version = "2.0.0"
edition = "2021"
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
description = "Provides injectable Filesystem and Network resources to make code more testable"
license = "MIT"
repository = "https://git.kemitix.net/kemitix/kxio"
exclude = [".cargo_home"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derive_more = { version = "1.0", features = [
"constructor",
"display",
"from"
] }
http = "1.1"
path-clean = "1.0"
reqwest = "0.12"
tempfile = "3.10"
[dev-dependencies]
assert2 = "0.3"
pretty_assertions = "1.4"
test-log = "0.2"
tokio = { version = "1.41", features = [
"macros",
"rt-multi-thread"
] }
tokio-test = "0.4"
[package.metadata.bin]
# Conventional commits githook
cc-cli = { version = "0.1" }