kxio/Cargo.toml

40 lines
924 B
TOML
Raw Permalink Normal View History

2024-04-08 14:33:39 +01:00
[package]
name = "kxio"
2024-05-17 12:00:18 +01:00
version = "1.2.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
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
2024-04-08 14:33:39 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derive_more = { version = "1.0", features = [
2024-11-09 07:52:42 +00:00
"constructor",
"display",
2024-11-09 07:52:42 +00:00
"from"
] }
2024-04-08 17:46:19 +01:00
http = "1.1"
path-clean = "1.0"
2024-04-08 17:01:50 +01:00
reqwest = "0.12"
2024-04-08 14:33:39 +01:00
tempfile = "3.10"
[dev-dependencies]
assert2 = "0.3"
pretty_assertions = "1.4"
test-log = "0.2"
2024-11-09 07:52:42 +00:00
tokio = { version = "1.41", features = [
"macros",
"rt-multi-thread"
] }
tokio-test = "0.4"
2024-04-08 14:33:39 +01:00
[package.metadata.bin]
# Conventional commits githook
cc-cli = { version = "0.1" }