kxio/Cargo.toml
ForgeJo Action. See: https://git.kemitix.net/kemitix/rust d3eb51ab73
All checks were successful
Test / build (map[name:stable]) (pull_request) Successful in 5m54s
Test / build (map[name:nightly]) (pull_request) Successful in 8m54s
Release Please / Release-plz (push) Successful in 1m6s
Test / build (map[name:nightly]) (push) Successful in 4m44s
Test / build (map[name:stable]) (push) Successful in 6m8s
chore: release v4.0.0
Signed-off-by: ForgeJo Action. See: https://git.kemitix.net/kemitix/rust <action@git.kemitix.net>
2024-12-15 14:10:38 +00:00

45 lines
1.1 KiB
TOML

[package]
name = "kxio"
version = "4.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]
base64 = "0.22"
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" ] }
tracing = "0.1"
[dev-dependencies]
assert2 = "0.3"
mutants = "0.0"
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" }