renovate
7cfc23055b
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [http](https://github.com/hyperium/http) | dependencies | major | `0.2` -> `1.1` | > ❗ **Important** > > Release Notes retrieval for this PR were skipped because no github.com credentials were available. > If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes). --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yODAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI4MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: Renovate Bot <renovate@kemitix.net> Reviewed-on: #3 Co-authored-by: renovate <renovate@noreply.kemitix.net> Co-committed-by: renovate <renovate@noreply.kemitix.net>
34 lines
601 B
TOML
34 lines
601 B
TOML
[package]
|
|
name = "kxio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# logging
|
|
tracing = "0.1"
|
|
|
|
# network
|
|
async-trait = "0.1"
|
|
http = "1.1"
|
|
reqwest = "0.12"
|
|
secrecy = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde-xml-rs = "0.6"
|
|
thiserror = "1.0"
|
|
|
|
# fs
|
|
tempfile = "3.10"
|
|
|
|
[dev-dependencies]
|
|
# testing
|
|
assert2 = "0.3"
|
|
pretty_assertions = "1.4"
|
|
test-log = "0.2"
|
|
tokio-test = "0.4"
|
|
|
|
[package.metadata.bin]
|
|
# Conventional commits githook
|
|
cc-cli = { version = "0.1" }
|