kxio/Cargo.toml
ForgeJo Action. See: https://git.kemitix.net/kemitix/rust a58796f2f0
All checks were successful
Rust / build (map[name:nightly]) (push) Successful in 4m14s
Rust / build (map[name:stable]) (push) Successful in 4m19s
Release Please / Release-plz (push) Successful in 1m56s
chore: release v3.0.0
Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust <action@git.kemitix.net>
2024-11-20 22:32:47 +00:00

42 lines
1 KiB
TOML

[package]
name = "kxio"
version = "3.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]
bytes = "1.8"
derive_more = { version = "1.0", features = [
"constructor",
"display",
"from"
] }
http = "1.1"
path-clean = "1.0"
reqwest = { version = "0.12", features = [ "json" ] }
url = "2.5"
tempfile = "3.10"
tokio = { version = "1.41", features = [ "sync" ] }
[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" }