Skip to content

Commit

Permalink
chore: fix 'as' keyword should match the case of the 'from' keyword (#…
Browse files Browse the repository at this point in the history
…677)

Signed-off-by: Gaius <[email protected]>
  • Loading branch information
gaius-qi authored Aug 19, 2024
1 parent f948db0 commit f1839ce
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
]

[workspace.package]
version = "0.1.101"
version = "0.1.102"
authors = ["The Dragonfly Developers"]
homepage = "https://d7y.io/"
repository = "https://github.com/dragonflyoss/client.git"
Expand All @@ -22,13 +22,13 @@ readme = "README.md"
edition = "2021"

[workspace.dependencies]
dragonfly-client = { path = "dragonfly-client", version = "0.1.101" }
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.1.101" }
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.1.101" }
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.1.101" }
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.1.101" }
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.1.101" }
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.1.101" }
dragonfly-client = { path = "dragonfly-client", version = "0.1.102" }
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.1.102" }
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.1.102" }
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.1.102" }
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.1.102" }
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.1.102" }
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.1.102" }
thiserror = "1.0"
dragonfly-api = "2.0.148"
reqwest = { version = "0.12.4", features = ["stream", "native-tls", "default-tls", "rustls-tls"] }
Expand Down
6 changes: 3 additions & 3 deletions ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75.0 as builder
FROM rust:1.75.0 AS builder

WORKDIR /app/client

Expand Down Expand Up @@ -34,7 +34,7 @@ COPY dragonfly-client-init/src ./dragonfly-client-init/src

RUN cargo build --release --verbose --bin dfget --bin dfdaemon --bin dfstore --bin dfcache

FROM alpine:3.17 as health
FROM alpine:3.17 AS health

ENV GRPC_HEALTH_PROBE_VERSION v0.4.24

Check warning on line 39 in ci/Dockerfile

View workflow job for this annotation

GitHub Actions / Push Client Image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 39 in ci/Dockerfile

View workflow job for this annotation

GitHub Actions / Push Client Image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Expand All @@ -47,7 +47,7 @@ RUN if [ "$(uname -m)" = "ppc64le" ]; then \
fi && \
chmod +x /bin/grpc_health_probe

FROM golang:1.21.1-alpine3.17 as pprof
FROM golang:1.21.1-alpine3.17 AS pprof

RUN go install github.com/google/pprof@latest

Expand Down
2 changes: 1 addition & 1 deletion ci/Dockerfile.dfinit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75.0 as builder
FROM rust:1.75.0 AS builder

RUN apt-get update && apt-get install -y openssl libclang-dev pkg-config protobuf-compiler

Expand Down

0 comments on commit f1839ce

Please sign in to comment.