1
0
mirror of https://github.com/containers/youki synced 2024-11-26 06:08:07 +01:00
Commit Graph

248 Commits

Author SHA1 Message Date
dependabot[bot]
514ff21507
chore(deps): bump pnet_datalink from 0.31.0 to 0.33.0
Bumps [pnet_datalink](https://github.com/libpnet/libpnet) from 0.31.0 to 0.33.0.
- [Release notes](https://github.com/libpnet/libpnet/releases)
- [Commits](https://github.com/libpnet/libpnet/compare/v0.31.0...v0.33.0)

---
updated-dependencies:
- dependency-name: pnet_datalink
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-06 01:43:25 +00:00
Djordje Lukic
e01e604ea9 Use saturating_sub instead of - for unsigned ints
This fixes a panic if the operation with the unsigned ints would result
in a negative number

Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2023-02-03 10:31:15 +01:00
dependabot[bot]
5e935273ac
chore(deps): bump uuid from 1.2.2 to 1.3.0
Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.2.2 to 1.3.0.
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](https://github.com/uuid-rs/uuid/compare/1.2.2...1.3.0)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-02 00:21:17 +00:00
Djordje Lukic
4fc61dbb97 Fix formatting with cargo fmt --check
Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2023-02-01 09:09:41 +01:00
Yashodhan
3675a5120a
Merge pull request #1428 from higuruchi/Add/Recursive_mount_attrs_test
Added recursive mount attr test
2023-01-30 10:27:01 +05:30
higuruchi
ccbd26be02 Fix error messages
Signed-off-by: higuruchi <fumiya2324@gmail.com>
2023-01-24 07:57:23 +00:00
higuruchi
3749a46a5e Remove clap from runtimetest
Signed-off-by: higuruchi <fumiya2324@gmail.com>
2023-01-24 06:58:21 +00:00
Adrian Reber
88d26db63f
Add descriptors.json when creating checkpoint
runc as well as crun create a file called descriptors.json in the
checkpoint directory. descriptors.json contains a list of how the FDs
0, 1, 2 are connected before checkpointing:

$ cat descriptors.json # created by runc in this case
["/dev/null","pipe:[230688]","pipe:[230689]"]

With this information the FDs can be reconnected correctly during
restore.

With this commit is it possible to do:

$ youki run container
$ youki checkpointt container
$ runc restore container

Now the checkpoint is in a format that can be handled by other container
runtimes.

Signed-off-by: Adrian Reber <areber@redhat.com>
2023-01-23 07:47:32 +00:00
dependabot[bot]
323e7d0e3e
chore(deps): bump which from 4.3.0 to 4.4.0
Bumps [which](https://github.com/harryfei/which-rs) from 4.3.0 to 4.4.0.
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Commits](https://github.com/harryfei/which-rs/compare/4.3.0...4.4.0)

---
updated-dependencies:
- dependency-name: which
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-23 02:00:34 +00:00
dependabot[bot]
e2bb592638
chore(deps): bump anyhow from 1.0.65 to 1.0.68
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.65 to 1.0.68.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.65...1.0.68)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-20 06:18:23 +00:00
dependabot[bot]
9aec2d8a62
chore(deps): bump oci-spec from 0.5.8 to 0.6.0
Bumps [oci-spec](https://github.com/containers/oci-spec-rs) from 0.5.8 to 0.6.0.
- [Release notes](https://github.com/containers/oci-spec-rs/releases)
- [Changelog](https://github.com/containers/oci-spec-rs/blob/main/release.md)
- [Commits](https://github.com/containers/oci-spec-rs/compare/v0.5.8...v0.6.0)

---
updated-dependencies:
- dependency-name: oci-spec
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-19 00:29:23 +00:00
dependabot[bot]
0d07fe21c6
chore(deps): bump once_cell from 1.16.0 to 1.17.0
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.16.0 to 1.17.0.
- [Release notes](https://github.com/matklad/once_cell/releases)
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](https://github.com/matklad/once_cell/compare/v1.16.0...v1.17.0)

---
updated-dependencies:
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-30 11:57:45 +00:00
Joshua Ford
a3bfc105ee
Upgrade clap to v4.0.32
Signed-off-by: Joshua Ford <joshua.ford@protonmail.com>
2022-12-28 07:21:25 -06:00
higuruchi
3cc90617bf Added rnoexec mount option test.
Signed-off-by: higuruchi <fumiya2324@gmail.com>
2022-12-25 06:44:32 +00:00
utam0k
daf7fb2834
Update Rust 1.66
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-12-24 21:02:53 +09:00
higuruchi
40e113a318 Fixed rnosuid mount option test method
Signed-off-by: higuruchi <fumiya2324@gmail.com>
2022-12-23 11:40:41 +00:00
higuruchi
d68af0a550 Added rnosuid mount option test.
Signed-off-by: higuruchi <fumiya2324@gmail.com>
2022-12-22 07:13:14 +00:00
dependabot[bot]
6e15da4f0f
chore(deps): bump num_cpus from 1.14.0 to 1.15.0
Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.14.0 to 1.15.0.
- [Release notes](https://github.com/seanmonstar/num_cpus/releases)
- [Changelog](https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/num_cpus/compare/v1.14.0...v1.15.0)

---
updated-dependencies:
- dependency-name: num_cpus
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-21 00:30:52 +00:00
higuruchi
88452c5621 Added recursive mount attr test.
Signed-off-by: higuruchi <fumiya2324@gmail.com>
2022-12-19 12:19:34 +00:00
dependabot[bot]
2d1f35742d
chore(deps): bump procfs from 0.14.1 to 0.14.2
Bumps [procfs](https://github.com/eminence/procfs) from 0.14.1 to 0.14.2.
- [Release notes](https://github.com/eminence/procfs/releases)
- [Commits](https://github.com/eminence/procfs/compare/v0.14.1...v0.14.2)

---
updated-dependencies:
- dependency-name: procfs
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-13 12:12:50 +00:00
Yashodhan Joshi
053b76a876 Fix release script and prepare for release 2022-12-06 11:32:40 +05:30
Mehdi Cheracher
93384b5cf4
Add hostname test in rust oci integration tests (#1376)
* Add hostname test

The test is ported from https://github.com/opencontainers/runtime-tools/blob/2802ff9ff5/validation/hostname/hostname.go

The intent is to make sure that the hostname set in the spec is actually set within the
container.

Signed-off-by: chermehdi <mehdi.cheracher@gmail.com>

* Address comment issues.

* Fix capitalisation in error messages.
* Split tests into individual methods.

Signed-off-by: chermehdi <mehdi.cheracher@gmail.com>

* Remove empty read-only paths condition from read_only integration tests

Signed-off-by: chermehdi <mehdi.cheracher@gmail.com>

* Exit early if readonly paths are empty

Signed-off-by: chermehdi <mehdi.cheracher@gmail.com>

Signed-off-by: chermehdi <mehdi.cheracher@gmail.com>
2022-12-02 17:38:03 +05:30
Thomas Schubart
e19307d363
Merge pull request #1332 from containers/dependabot/cargo/clap_derive-4.0.21
chore(deps): bump clap_derive from 4.0.18 to 4.0.21
2022-11-12 19:45:57 +01:00
dependabot[bot]
24f024cc8a
chore(deps): bump num_cpus from 1.13.1 to 1.14.0
Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.13.1 to 1.14.0.
- [Release notes](https://github.com/seanmonstar/num_cpus/releases)
- [Changelog](https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md)
- [Commits](https://github.com/seanmonstar/num_cpus/compare/v1.13.1...v1.14.0)

---
updated-dependencies:
- dependency-name: num_cpus
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-09 00:20:18 +00:00
dependabot[bot]
cd2794358a
chore(deps): bump clap_derive from 4.0.18 to 4.0.21
Bumps [clap_derive](https://github.com/clap-rs/clap) from 4.0.18 to 4.0.21.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.18...v4.0.21)

---
updated-dependencies:
- dependency-name: clap_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-09 00:18:40 +00:00
Yashodhan Joshi
a96f8d0aac Upgrade to 1.65 and fix lint errors 2022-11-07 17:05:13 +05:30
dependabot[bot]
56587ea3ff
chore(deps): bump once_cell from 1.15.0 to 1.16.0
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.15.0 to 1.16.0.
- [Release notes](https://github.com/matklad/once_cell/releases)
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](https://github.com/matklad/once_cell/compare/v1.15.0...v1.16.0)

---
updated-dependencies:
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-31 00:49:55 +00:00
dependabot[bot]
adcb1f4a65
chore(deps): bump clap from 3.2.22 to 3.2.23
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.22 to 3.2.23.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.23/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.22...v3.2.23)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-25 00:40:29 +00:00
dependabot[bot]
66dac703f6
chore(deps): bump clap_derive from 4.0.13 to 4.0.18
Bumps [clap_derive](https://github.com/clap-rs/clap) from 4.0.13 to 4.0.18.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.13...v4.0.18)

---
updated-dependencies:
- dependency-name: clap_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-21 01:23:57 +00:00
dependabot[bot]
d48e720832
chore(deps): bump clap_derive from 4.0.10 to 4.0.13
Bumps [clap_derive](https://github.com/clap-rs/clap) from 4.0.10 to 4.0.13.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.10...v4.0.13)

---
updated-dependencies:
- dependency-name: clap_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-12 01:10:04 +00:00
dependabot[bot]
1a766cb639
chore(deps): bump uuid from 1.1.2 to 1.2.1
Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.1.2 to 1.2.1.
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](https://github.com/uuid-rs/uuid/compare/1.1.2...1.2.1)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-10 01:17:53 +00:00
dependabot[bot]
76ab1fda57
chore(deps): bump clap_derive from 4.0.9 to 4.0.10
Bumps [clap_derive](https://github.com/clap-rs/clap) from 4.0.9 to 4.0.10.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.9...v4.0.10)

---
updated-dependencies:
- dependency-name: clap_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-06 00:46:28 +00:00
dependabot[bot]
15e8a32a58
chore(deps): bump clap_derive from 4.0.8 to 4.0.9
Bumps [clap_derive](https://github.com/clap-rs/clap) from 4.0.8 to 4.0.9.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.8...v4.0.9)

---
updated-dependencies:
- dependency-name: clap_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-04 00:37:17 +00:00
dependabot[bot]
42ba6117bd
chore(deps): bump clap_derive from 4.0.1 to 4.0.8
Bumps [clap_derive](https://github.com/clap-rs/clap) from 4.0.1 to 4.0.8.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.1...v4.0.8)

---
updated-dependencies:
- dependency-name: clap_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-03 01:26:54 +00:00
dependabot[bot]
2a0e983fd5
chore(deps): bump clap_derive from 3.2.18 to 4.0.1
Bumps [clap_derive](https://github.com/clap-rs/clap) from 3.2.18 to 4.0.1.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.18...v4.0.1)

---
updated-dependencies:
- dependency-name: clap_derive
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-29 00:37:15 +00:00
utam0k
0be833abc0
integrate: Refactor a lifetime for rust 1.64.0
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-09-24 13:24:20 +09:00
dependabot[bot]
77d761effb
chore(deps): bump once_cell from 1.14.0 to 1.15.0
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.14.0 to 1.15.0.
- [Release notes](https://github.com/matklad/once_cell/releases)
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](https://github.com/matklad/once_cell/compare/v1.14.0...v1.15.0)

---
updated-dependencies:
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-21 00:46:38 +00:00
dependabot[bot]
e4135f2580
chore(deps): bump clap from 3.2.21 to 3.2.22
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.21 to 3.2.22.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.22/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.21...v3.2.22)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-19 01:17:03 +00:00
utam0k
a4c21c2f44
Merge pull request #1184 from containers/dependabot/cargo/clap-3.2.21
chore(deps): bump clap from 3.2.20 to 3.2.21
2022-09-15 20:27:45 +09:00
dependabot[bot]
a4a3a0f74f
chore(deps): bump anyhow from 1.0.63 to 1.0.65
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.63 to 1.0.65.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.63...1.0.65)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-14 00:46:43 +00:00
dependabot[bot]
af3a78090b
chore(deps): bump clap from 3.2.20 to 3.2.21
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.20 to 3.2.21.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.21/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.20...v3.2.21)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-13 00:39:28 +00:00
dependabot[bot]
f7d25286d3
chore(deps): bump oci-spec from 0.5.7 to 0.5.8
Bumps [oci-spec](https://github.com/containers/oci-spec-rs) from 0.5.7 to 0.5.8.
- [Release notes](https://github.com/containers/oci-spec-rs/releases)
- [Changelog](https://github.com/containers/oci-spec-rs/blob/main/release.md)
- [Commits](https://github.com/containers/oci-spec-rs/compare/v0.5.7...v0.5.8)

---
updated-dependencies:
- dependency-name: oci-spec
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-07 00:43:25 +00:00
dependabot[bot]
b9fb07abf2
chore(deps): bump clap from 3.2.18 to 3.2.19
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.18 to 3.2.19.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.19/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.18...v3.2.19)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-01 11:21:58 +00:00
dependabot[bot]
f3e3675ee6
chore(deps): bump which from 4.2.5 to 4.3.0
Bumps [which](https://github.com/harryfei/which-rs) from 4.2.5 to 4.3.0.
- [Release notes](https://github.com/harryfei/which-rs/releases)
- [Commits](https://github.com/harryfei/which-rs/compare/4.2.5...4.3.0)

---
updated-dependencies:
- dependency-name: which
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-01 00:53:01 +00:00
dependabot[bot]
e6f24dfc7b
chore(deps): bump clap from 3.2.17 to 3.2.18 (#1156)
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.17 to 3.2.18.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.18/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.17...v3.2.18)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-08-30 17:04:15 +02:00
dependabot[bot]
78aeab3f26
chore(deps): bump nix from 0.24.2 to 0.25.0
Bumps [nix](https://github.com/nix-rust/nix) from 0.24.2 to 0.25.0.
- [Release notes](https://github.com/nix-rust/nix/releases)
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nix-rust/nix/compare/v0.24.2...v0.25.0)

---
updated-dependencies:
- dependency-name: nix
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-23 00:40:14 +00:00
utam0k
74d6bf879d
Merge pull request #1137 from utam0k/improve/cargo-upgrade
Upgrade dependencies
2022-08-23 08:55:09 +09:00
utam0k
0e2ebba396
fix the warning of cargo clippy.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-08-22 21:37:10 +09:00
dependabot[bot]
9a12deb869
chore(deps): bump procfs from 0.14.0 to 0.14.1
Bumps [procfs](https://github.com/eminence/procfs) from 0.14.0 to 0.14.1.
- [Release notes](https://github.com/eminence/procfs/releases)
- [Commits](https://github.com/eminence/procfs/compare/v0.14.0...v0.14.1)

---
updated-dependencies:
- dependency-name: procfs
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-22 01:20:07 +00:00
dependabot[bot]
ebe1ad0fe2
chore(deps): bump clap from 3.2.16 to 3.2.17
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.16 to 3.2.17.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.17/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.16...v3.2.17)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-20 12:08:35 +00:00
dependabot[bot]
82ebdc7cae
chore(deps): bump anyhow from 1.0.58 to 1.0.60
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.58 to 1.0.60.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.58...1.0.60)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-09 10:14:49 +00:00
Furisto
e3fcdafc92 Bump procfs from 0.13.2 to 0.14.0
Signed-off-by: Furisto <24721048+Furisto@users.noreply.github.com>
2022-08-06 09:48:19 +02:00
Thomas Schubart
cd96247e49
Merge pull request #1085 from containers/dependabot/cargo/clap-3.2.16
chore(deps): bump clap from 3.2.15 to 3.2.16
2022-08-01 10:54:57 +02:00
dependabot[bot]
3ce9a8b36c
chore(deps): bump clap from 3.2.15 to 3.2.16
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.15 to 3.2.16.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.15...v3.2.16)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-01 01:25:58 +00:00
Furisto
db88ac6fd8
Fix clippy lints
Signed-off-by: Furisto <24721048+Furisto@users.noreply.github.com>
2022-07-30 13:29:59 +02:00
dependabot[bot]
78b1cd1fd7
chore(deps): bump clap from 3.2.14 to 3.2.15
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.14 to 3.2.15.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/v3.2.15/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.14...v3.2.15)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-26 00:54:59 +00:00
dependabot[bot]
c10e2bd366
chore(deps): bump crossbeam from 0.8.1 to 0.8.2
Bumps [crossbeam](https://github.com/crossbeam-rs/crossbeam) from 0.8.1 to 0.8.2.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-0.8.1...crossbeam-0.8.2)

---
updated-dependencies:
- dependency-name: crossbeam
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-25 01:23:09 +00:00
dependabot[bot]
0b79605e1a
chore(deps): bump clap from 3.2.13 to 3.2.14
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.13 to 3.2.14.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.13...v3.2.14)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-22 00:41:17 +00:00
dependabot[bot]
fed14dae81
chore(deps): bump clap from 3.2.12 to 3.2.13
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.12 to 3.2.13.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.12...v3.2.13)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-20 00:50:09 +00:00
dependabot[bot]
d88f1f80f4
chore(deps): bump procfs from 0.13.0 to 0.13.2
Bumps [procfs](https://github.com/eminence/procfs) from 0.13.0 to 0.13.2.
- [Release notes](https://github.com/eminence/procfs/releases)
- [Commits](https://github.com/eminence/procfs/compare/v0.13.0...v0.13.2)

---
updated-dependencies:
- dependency-name: procfs
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-18 12:32:58 +00:00
dependabot[bot]
00899dbcb1
chore(deps): bump nix from 0.24.1 to 0.24.2
Bumps [nix](https://github.com/nix-rust/nix) from 0.24.1 to 0.24.2.
- [Release notes](https://github.com/nix-rust/nix/releases)
- [Changelog](https://github.com/nix-rust/nix/blob/v0.24.2/CHANGELOG.md)
- [Commits](https://github.com/nix-rust/nix/compare/v0.24.1...v0.24.2)

---
updated-dependencies:
- dependency-name: nix
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-18 01:21:34 +00:00
dependabot[bot]
e368ef9a5a
chore(deps): bump clap from 3.2.11 to 3.2.12
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.11 to 3.2.12.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.11...v3.2.12)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-15 01:07:54 +00:00
dependabot[bot]
e3dcc97524
chore(deps): bump clap from 3.2.10 to 3.2.11
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.10 to 3.2.11.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.10...v3.2.11)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-14 00:48:26 +00:00
dependabot[bot]
f79c084e12
chore(deps): bump clap from 3.2.8 to 3.2.10
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.8 to 3.2.10.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.8...v3.2.10)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-13 00:43:47 +00:00
Benjamin Levin
3ec29df155 Merge upstream
Signed-off-by: Benjamin Levin <mostlyamiable@gmail.com>
2022-07-08 13:34:39 -05:00
Benjamin Levin
b01361c07d Update oci-spec to 0.5.7
Signed-off-by: Benjamin Levin <mostlyamiable@gmail.com>
2022-07-08 13:33:33 -05:00
dependabot[bot]
03dd831d7c
chore(deps): bump anyhow from 1.0.57 to 1.0.58
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.57 to 1.0.58.
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](https://github.com/dtolnay/anyhow/compare/1.0.57...1.0.58)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-20 01:21:46 +00:00
Tony Duan
e3aa2c080c
test: hooks integration test
See #361

Signed-off-by: Tony Duan <tony84727@gmail.com>
2022-06-18 20:09:12 +08:00
dependabot[bot]
b0d18cbfbb
chore(deps): bump clap from 3.2.4 to 3.2.5
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.4 to 3.2.5.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.4...v3.2.5)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-16 00:51:50 +00:00
dependabot[bot]
952bff096d
chore(deps): bump clap from 3.1.18 to 3.2.4
Bumps [clap](https://github.com/clap-rs/clap) from 3.1.18 to 3.2.4.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.1.18...v3.2.4)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-15 00:40:23 +00:00
utam0k
dc89f6bdd5
Use pnet_datalink instead of pnet.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-06-06 15:59:45 +09:00
dependabot[bot]
2e4cc29428
chore(deps): bump uuid from 1.0.0 to 1.1.0
Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.0.0 to 1.1.0.
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](https://github.com/uuid-rs/uuid/compare/1.0.0...1.1.0)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-27 05:01:58 +00:00
dependabot[bot]
75c0a1b69f chore(deps): bump pnet from 0.29.0 to 0.30.0
Bumps [pnet](https://github.com/libpnet/libpnet) from 0.29.0 to 0.30.0.
- [Release notes](https://github.com/libpnet/libpnet/releases)
- [Commits](https://github.com/libpnet/libpnet/compare/v0.29.0...v0.30.0)

---
updated-dependencies:
- dependency-name: pnet
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-26 20:47:38 +02:00
dependabot[bot]
0d203762a0
chore(deps): bump once_cell from 1.11.0 to 1.12.0
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.11.0 to 1.12.0.
- [Release notes](https://github.com/matklad/once_cell/releases)
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](https://github.com/matklad/once_cell/compare/v1.11.0...v1.12.0)

---
updated-dependencies:
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-24 01:12:41 +00:00
dependabot[bot]
722b9d8d36
chore(deps): bump once_cell from 1.10.0 to 1.11.0 (#929)
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.10.0 to 1.11.0.
- [Release notes](https://github.com/matklad/once_cell/releases)
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](https://github.com/matklad/once_cell/compare/v1.10.0...v1.11.0)

---
updated-dependencies:
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-22 14:26:01 +02:00
utam0k
a55cbd0d65
put the runtime feature into the oci-spec-rs crate.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-05-16 21:33:34 +09:00
utam0k
84bb36321c
Merge pull request #908 from wineway/main
support configure cpu.idle by Cgroupfs
2022-05-12 05:39:49 +09:00
dependabot[bot]
be189274d2
chore(deps): bump clap from 3.1.17 to 3.1.18
Bumps [clap](https://github.com/clap-rs/clap) from 3.1.17 to 3.1.18.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.1.17...v3.1.18)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-11 00:59:49 +00:00
wineway
8cbd30ef57 add test for Cgroup/cpu.idle
Signed-off-by: wineway <wangyuweihx@gmail.com>
2022-05-10 19:19:58 +00:00
dependabot[bot]
d3959b985c
chore(deps): bump clap from 3.1.15 to 3.1.17
Bumps [clap](https://github.com/clap-rs/clap) from 3.1.15 to 3.1.17.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.1.15...v3.1.17)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-09 01:58:34 +00:00
dependabot[bot]
bdf842097b
chore(deps): bump clap from 3.1.14 to 3.1.15
Bumps [clap](https://github.com/clap-rs/clap) from 3.1.14 to 3.1.15.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.1.14...v3.1.15)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-03 00:49:18 +00:00
dependabot[bot]
c67d0e6513
chore(deps): bump clap from 3.1.12 to 3.1.14
Bumps [clap](https://github.com/clap-rs/clap) from 3.1.12 to 3.1.14.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.1.12...v3.1.14)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-05-02 01:25:26 +00:00
Thomas Schubart
125e1f8fc5
Bump nix from 0.24.0 to 0.24.1 (#867)
Signed-off-by: Furisto <24721048+Furisto@users.noreply.github.com>
2022-04-27 10:54:55 +02:00
dependabot[bot]
6e7078b2fc
chore(deps): bump uuid from 0.8.2 to 1.0.0 (#866)
Bumps [uuid](https://github.com/uuid-rs/uuid) from 0.8.2 to 1.0.0.
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](https://github.com/uuid-rs/uuid/compare/0.8.2...1.0.0)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-26 23:05:37 +02:00
utam0k
6a98b59026 Convenient use of rust-analyzer and other tools by placing Cargo.toml in the root.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-04-26 12:03:09 +00:00
utam0k
f2a645fb4f
Follow the breaking changes of nix
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-04-23 21:30:00 +09:00
Yashodhan Joshi
a8dec2f3af Resolve deprecation warnings from clap 2022-03-27 17:20:37 +05:30
utam0k
54bb830b4b
Introduce the root Makefile.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-03-11 22:14:34 +09:00
oliver
e88b3c6fb7 Delete cargo test version 2021-07-16 04:55:21 +09:00
oliver
884a88c3ec Add a procedure to run tests in binary 2021-06-28 04:33:00 +09:00
oliver
239305cea6 Implement the code to test the create command 2021-06-28 04:26:46 +09:00
oliver
3e6e899a6f Implement tests to check the container lifecycle 2021-06-28 04:26:17 +09:00
oliver
8fb3e1899d Add youki commands 2021-06-28 04:25:08 +09:00
oliver
27a0924fea Add modules needed for integration testing 2021-06-28 04:23:00 +09:00
oliver
1c1aa2d2fa Added doc on how to run integration tests 2021-06-07 18:24:34 +09:00
oliver
02701d97f3 Run fmt 2021-06-06 23:48:55 +09:00
oliver
6b5d59d751 refactore 2021-06-06 23:47:17 +09:00
oliver
b56ddc3b59 Create a template for integration tests. 2021-06-06 22:24:53 +09:00