2024-04-08 14:33:39 +01:00
|
|
|
[package]
|
|
|
|
name = "kxio"
|
2024-12-29 20:08:55 +00:00
|
|
|
version = "5.0.0"
|
2024-04-08 14:33:39 +01:00
|
|
|
edition = "2021"
|
2024-04-08 18:12:14 +01:00
|
|
|
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"]
|
2024-04-08 14:33:39 +01:00
|
|
|
|
2024-10-29 22:11:26 +00:00
|
|
|
[lints.rust]
|
|
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
|
|
|
|
|
2024-04-08 14:33:39 +01:00
|
|
|
[dependencies]
|
2024-12-01 20:58:05 +00:00
|
|
|
base64 = "0.22"
|
2024-11-17 11:24:28 +00:00
|
|
|
bytes = "1.8"
|
2025-01-18 17:19:52 +00:00
|
|
|
derive_more = { version = "1.0", features = ["constructor", "display", "from"] }
|
2024-04-08 17:46:19 +01:00
|
|
|
http = "1.1"
|
2024-11-04 10:22:31 +00:00
|
|
|
path-clean = "1.0"
|
2025-01-18 17:19:52 +00:00
|
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
|
|
|
"json",
|
|
|
|
"rustls-tls",
|
|
|
|
] }
|
2024-11-12 07:13:59 +00:00
|
|
|
url = "2.5"
|
2024-04-08 14:33:39 +01:00
|
|
|
tempfile = "3.10"
|
2025-01-18 17:19:52 +00:00
|
|
|
tokio = { version = "1.41", features = ["sync"] }
|
2024-12-04 22:38:44 +00:00
|
|
|
tracing = "0.1"
|
2024-04-27 20:31:23 +01:00
|
|
|
|
2024-04-08 15:19:06 +01:00
|
|
|
[dev-dependencies]
|
|
|
|
assert2 = "0.3"
|
2024-12-04 22:38:44 +00:00
|
|
|
mutants = "0.0"
|
2024-04-08 15:19:06 +01:00
|
|
|
pretty_assertions = "1.4"
|
|
|
|
test-log = "0.2"
|
2025-01-18 17:19:52 +00:00
|
|
|
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }
|
2024-04-08 15:19:06 +01:00
|
|
|
tokio-test = "0.4"
|
|
|
|
|
2024-04-08 14:33:39 +01:00
|
|
|
[package.metadata.bin]
|
|
|
|
# Conventional commits githook
|
|
|
|
cc-cli = { version = "0.1" }
|