mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 21:00:55 +00:00
Bumps the dep-updates group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [async-trait](https://github.com/dtolnay/async-trait) | `0.1.85` | `0.1.87` | | [indexmap](https://github.com/indexmap-rs/indexmap) | `2.7.0` | `2.7.1` | | [libc](https://github.com/rust-lang/libc) | `0.2.169` | `0.2.170` | | [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.26` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.9` | `2.0.12` | | [tokio](https://github.com/tokio-rs/tokio) | `1.42.0` | `1.44.0` | | [uuid](https://github.com/uuid-rs/uuid) | `1.11.0` | `1.15.1` | Updates `async-trait` from 0.1.85 to 0.1.87 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.85...0.1.87) Updates `indexmap` from 2.7.0 to 2.7.1 - [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md) - [Commits](https://github.com/indexmap-rs/indexmap/compare/2.7.0...2.7.1) Updates `libc` from 0.2.169 to 0.2.170 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.170/CHANGELOG.md) - [Commits](https://github.com/rust-lang/libc/compare/0.2.169...0.2.170) Updates `log` from 0.4.22 to 0.4.26 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.22...0.4.26) Updates `thiserror` from 2.0.9 to 2.0.12 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.9...2.0.12) Updates `tokio` from 1.42.0 to 1.44.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.44.0) Updates `uuid` from 1.11.0 to 1.15.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.11.0...v1.15.1) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dep-updates - dependency-name: indexmap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dep-updates - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dep-updates - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dep-updates - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dep-updates - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dep-updates - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dep-updates ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
823 B
TOML
46 lines
823 B
TOML
[workspace]
|
|
members = [
|
|
"crates/xen/xencall",
|
|
"crates/xen/xenclient",
|
|
"crates/xen/xenevtchn",
|
|
"crates/xen/xengnt",
|
|
"crates/xen/xenplatform",
|
|
"crates/xen/xenstore",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.0.24"
|
|
homepage = "https://krata.dev"
|
|
license = "GPL-2.0-or-later"
|
|
repository = "https://github.com/edera-dev/krata"
|
|
|
|
[workspace.dependencies]
|
|
async-trait = "0.1.87"
|
|
bit-vec = "0.8.0"
|
|
byteorder = "1"
|
|
elf = "0.7.4"
|
|
env_logger = "0.11.6"
|
|
flate2 = "1.0"
|
|
indexmap = "2.7.1"
|
|
libc = "0.2"
|
|
log = "0.4.26"
|
|
memchr = "2"
|
|
nix = "0.29.0"
|
|
regex = "1.11.1"
|
|
slice-copy = "0.3.0"
|
|
thiserror = "2.0.12"
|
|
xz2 = "0.1"
|
|
|
|
[workspace.dependencies.tokio]
|
|
version = "1.44.0"
|
|
features = ["full"]
|
|
|
|
[workspace.dependencies.uuid]
|
|
version = "1.15.1"
|
|
features = ["v4"]
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
strip = "symbols"
|