mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-04-12 15:02:36 +00:00
Compare commits
24 Commits
burgerdev/
...
1.12.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ea0b45f5b9 | ||
|
|
e7e55e906c | ||
|
|
2ef1eba120 | ||
|
|
e8e53b0661 | ||
|
|
0a3963f0bf | ||
|
|
5ef327a738 | ||
|
|
ae3645ac3d | ||
|
|
de89796190 | ||
|
|
fcc48d1de7 | ||
|
|
fac05f0fa8 | ||
|
|
5f1a9d28ea | ||
|
|
a662908478 | ||
|
|
e357dd3ca9 | ||
|
|
57b64f35e0 | ||
|
|
4c004891b5 | ||
|
|
1b157e5015 | ||
|
|
0d96145c29 | ||
|
|
c2539b1b3d | ||
|
|
8af8129a1a | ||
|
|
1f21947dd1 | ||
|
|
e902aeb5cf | ||
|
|
ba3078b8e5 | ||
|
|
a276da6194 | ||
|
|
bf5671357e |
21
.github/workflows/PR-wip-checks.yaml
vendored
Normal file
21
.github/workflows/PR-wip-checks.yaml
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
name: Pull request WIP checks
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- synchronize
|
||||||
|
- reopened
|
||||||
|
- edited
|
||||||
|
- labeled
|
||||||
|
- unlabeled
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
pr_wip_check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: WIP Check
|
||||||
|
steps:
|
||||||
|
- name: WIP Check
|
||||||
|
uses: tim-actions/wip-check@1c2a1ca6c110026b3e2297bb2ef39e1747b5a755
|
||||||
|
with:
|
||||||
|
labels: '["do-not-merge", "wip", "rfc"]'
|
||||||
|
keywords: '["WIP", "wip", "RFC", "rfc", "dnm", "DNM", "do-not-merge"]'
|
||||||
22
.github/workflows/dco-check.yaml
vendored
Normal file
22
.github/workflows/dco-check.yaml
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
name: DCO check
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- reopened
|
||||||
|
- synchronize
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dco_check_job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: DCO Check
|
||||||
|
steps:
|
||||||
|
- name: Get PR Commits
|
||||||
|
id: 'get-pr-commits'
|
||||||
|
uses: tim-actions/get-pr-commits@ed97a21c3f83c3417e67a4733ea76887293a2c8f
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: DCO Check
|
||||||
|
uses: tim-actions/dco@2fd0504dc0d27b33f542867c300c60840c6dcb20
|
||||||
|
with:
|
||||||
|
commits: ${{ steps.get-pr-commits.outputs.commits }}
|
||||||
86
.github/workflows/main.yaml
vendored
86
.github/workflows/main.yaml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
popd
|
popd
|
||||||
./packaging/artifact-list.sh > artifact-list.txt
|
./packaging/artifact-list.sh > artifact-list.txt
|
||||||
- name: save-artifact-list
|
- name: save-artifact-list
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
path: artifact-list.txt
|
path: artifact-list.txt
|
||||||
@@ -30,7 +30,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- run: |
|
- run: |
|
||||||
@@ -39,13 +39,13 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-kernel.tar.gz
|
path: kata-static-kernel.tar.gz
|
||||||
@@ -58,7 +58,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- run: |
|
- run: |
|
||||||
@@ -67,13 +67,13 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-experimental-kernel.tar.gz
|
path: kata-static-experimental-kernel.tar.gz
|
||||||
@@ -86,20 +86,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- name: build-qemu
|
- name: build-qemu
|
||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-qemu.tar.gz
|
path: kata-static-qemu.tar.gz
|
||||||
@@ -112,20 +112,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- name: build-nemu
|
- name: build-nemu
|
||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-nemu.tar.gz
|
path: kata-static-nemu.tar.gz
|
||||||
@@ -139,20 +139,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- name: build-qemu-virtiofsd
|
- name: build-qemu-virtiofsd
|
||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-qemu-virtiofsd.tar.gz
|
path: kata-static-qemu-virtiofsd.tar.gz
|
||||||
@@ -166,20 +166,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- name: build-image
|
- name: build-image
|
||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-image.tar.gz
|
path: kata-static-image.tar.gz
|
||||||
@@ -193,20 +193,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- name: build-firecracker
|
- name: build-firecracker
|
||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-firecracker.tar.gz
|
path: kata-static-firecracker.tar.gz
|
||||||
@@ -220,20 +220,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- name: build-clh
|
- name: build-clh
|
||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-clh.tar.gz
|
path: kata-static-clh.tar.gz
|
||||||
@@ -247,20 +247,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifact-list
|
- name: get-artifact-list
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: artifact-list
|
name: artifact-list
|
||||||
- name: build-kata-components
|
- name: build-kata-components
|
||||||
run: |
|
run: |
|
||||||
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
if grep -q $buildstr ./artifact-list/artifact-list.txt; then
|
||||||
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
$GITHUB_WORKSPACE/.github/workflows/generate-artifact-tarball.sh $buildstr
|
||||||
echo ::set-env name=artifact-built::true
|
echo "artifact-built=true" >> $GITHUB_ENV
|
||||||
else
|
else
|
||||||
echo ::set-env name=artifact-built::false
|
echo "artifact-built=false" >> $GITHUB_ENV
|
||||||
fi
|
fi
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
if: env.artifact-built == 'true'
|
if: env.artifact-built == 'true'
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
path: kata-static-kata-components.tar.gz
|
path: kata-static-kata-components.tar.gz
|
||||||
@@ -271,14 +271,14 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: get-artifacts
|
- name: get-artifacts
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: kata-artifacts
|
name: kata-artifacts
|
||||||
- name: colate-artifacts
|
- name: colate-artifacts
|
||||||
run: |
|
run: |
|
||||||
$GITHUB_WORKSPACE/.github/workflows/gather-artifacts.sh
|
$GITHUB_WORKSPACE/.github/workflows/gather-artifacts.sh
|
||||||
- name: store-artifacts
|
- name: store-artifacts
|
||||||
uses: actions/upload-artifact@master
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: release-candidate
|
name: release-candidate
|
||||||
path: kata-static.tar.xz
|
path: kata-static.tar.xz
|
||||||
@@ -288,7 +288,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: get-artifacts
|
- name: get-artifacts
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: release-candidate
|
name: release-candidate
|
||||||
- name: build-and-push-kata-deploy-ci
|
- name: build-and-push-kata-deploy-ci
|
||||||
@@ -304,9 +304,7 @@ jobs:
|
|||||||
docker build --build-arg KATA_ARTIFACTS=kata-static.tar.xz -t katadocker/kata-deploy-ci:$pkg_sha ./packaging/kata-deploy
|
docker build --build-arg KATA_ARTIFACTS=kata-static.tar.xz -t katadocker/kata-deploy-ci:$pkg_sha ./packaging/kata-deploy
|
||||||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
|
||||||
docker push katadocker/kata-deploy-ci:$pkg_sha
|
docker push katadocker/kata-deploy-ci:$pkg_sha
|
||||||
|
echo "::set-output name=PKG_SHA::${pkg_sha}"
|
||||||
echo "##[set-output name=PKG_SHA;]${pkg_sha}"
|
|
||||||
echo ::set-env name=TAG::$tag
|
|
||||||
- name: test-kata-deploy-ci-in-aks
|
- name: test-kata-deploy-ci-in-aks
|
||||||
uses: ./packaging/kata-deploy/action
|
uses: ./packaging/kata-deploy/action
|
||||||
with:
|
with:
|
||||||
@@ -329,7 +327,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: download-artifacts
|
- name: download-artifacts
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: release-candidate
|
name: release-candidate
|
||||||
- name: install hub
|
- name: install hub
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ netlink = { path = "netlink" }
|
|||||||
lazy_static = "1.3.0"
|
lazy_static = "1.3.0"
|
||||||
error-chain = "0.12.1"
|
error-chain = "0.12.1"
|
||||||
grpcio = { git="https://github.com/alipay/grpc-rs", branch="rust_agent" }
|
grpcio = { git="https://github.com/alipay/grpc-rs", branch="rust_agent" }
|
||||||
protobuf = "2.6.1"
|
protobuf = "=2.6.1"
|
||||||
futures = "0.1.27"
|
futures = "0.1.27"
|
||||||
libc = "0.2.58"
|
libc = "0.2.58"
|
||||||
nix = "0.17.0"
|
nix = "0.17.0"
|
||||||
|
|||||||
@@ -72,6 +72,9 @@ default: $(TARGET) show-header
|
|||||||
$(TARGET): $(TARGET_PATH)
|
$(TARGET): $(TARGET_PATH)
|
||||||
|
|
||||||
$(TARGET_PATH): $(SOURCES) | show-summary
|
$(TARGET_PATH): $(SOURCES) | show-summary
|
||||||
|
@rustup default 1.42.0
|
||||||
|
@rustup toolchain install 1.42.0-musl
|
||||||
|
@rustup target add $(ARCH)-unknown-linux-musl
|
||||||
@cargo build --target $(TRIPLE)
|
@cargo build --target $(TRIPLE)
|
||||||
|
|
||||||
show-header:
|
show-header:
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.58"
|
libc = "0.2.58"
|
||||||
nix = "0.17.0"
|
nix = "0.17.0"
|
||||||
protobuf = "2.6.1"
|
protobuf = "=2.6.1"
|
||||||
rustjail = { path = "../rustjail" }
|
rustjail = { path = "../rustjail" }
|
||||||
protocols = { path = "../protocols" }
|
protocols = { path = "../protocols" }
|
||||||
slog = { version = "2.5.2", features = ["dynamic-keys", "max_level_trace", "release_max_level_info"] }
|
slog = { version = "2.5.2", features = ["dynamic-keys", "max_level_trace", "release_max_level_info"] }
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
grpcio = { git="https://github.com/alipay/grpc-rs", branch="rust_agent" }
|
grpcio = { git="https://github.com/alipay/grpc-rs", branch="rust_agent" }
|
||||||
protobuf = "2.6.1"
|
protobuf = "=2.6.1"
|
||||||
futures = "0.1.27"
|
futures = "0.1.27"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ scopeguard = "1.0.0"
|
|||||||
prctl = "1.0.0"
|
prctl = "1.0.0"
|
||||||
lazy_static = "1.3.0"
|
lazy_static = "1.3.0"
|
||||||
libc = "0.2.58"
|
libc = "0.2.58"
|
||||||
protobuf = "2.6.1"
|
protobuf = "=2.6.1"
|
||||||
slog = "2.5.2"
|
slog = "2.5.2"
|
||||||
slog-scope = "4.1.2"
|
slog-scope = "4.1.2"
|
||||||
scan_fmt = "0.2"
|
scan_fmt = "0.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user