kxio/Cargo.toml
Paul Campbell c81fe6753f
All checks were successful
Rust / build (map[name:stable]) (push) Successful in 1m37s
Rust / build (map[name:nightly]) (push) Successful in 1m57s
Release Please / Release-plz (push) Successful in 27s
feat(net)!: fluent api
Closes kemitix/kxio#43
2024-11-08 19:11:23 +00:00

39 lines
1 KiB
TOML

[package]
name = "kxio"
version = "1.2.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]
async-trait = "0.1"
derive_more = { version = "1.0", features = [ "from", "display", "constructor" ] }
http = "1.1"
path-clean = "1.0"
reqwest = "0.12"
secrecy = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-xml-rs = "0.6"
tempfile = "3.10"
thiserror = "2.0"
tracing = "0.1"
[dev-dependencies]
assert2 = "0.3"
pretty_assertions = "1.4"
test-log = "0.2"
tokio = { version = "1.41", features = ["macros"] }
tokio-test = "0.4"
[package.metadata.bin]
# Conventional commits githook
cc-cli = { version = "0.1" }