logo
docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109
linux/amd64 docker.io

该Docker镜像包含Rust语言的语言服务器rust-analyzer,可为Rust项目提供代码分析、智能补全、代码跳转、重构等开发辅助功能,适用于集成到开发环境或CI/CD流程中,帮助提升Rust代码编写效率。

12
浏览次数
4.26GB
镜像大小
源镜像
docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109
镜像ID
sha256:a30e86edd4b1c36f5dc6ba43d026e85ca827531664ccc008610a569b844d5f8e
镜像 TAG
17258-f6fc109
镜像大小
4.26GB
平台架构
linux/amd64
镜像源
docker.io
CMD
bash
启动入口
工作目录
/rust-analyzer
OS/平台
linux/amd64
镜像创建
2026-04-22T08:51:49.930887101Z
同步时间
2026-07-07 05:06
浏览量
12 次
贡献者
⚙️ 环境变量 8
KeyValue
RUSTUP_HOME=/usr/local/rustup 0
CARGO_HOME=/usr/local/cargo 1
RUST_VERSION=1.78.0 2
TZ=Etc/UTC 3
LANG=C.UTF-8 4
LC_ALL=C.UTF-8 5
NO_CONDA=1 6
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/conda/bin:/opt/conda/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 7
🏷️ 镜像标签 2
KeyValue
1.38.1 io.buildah.version
https://github.com/rust-lang/docker-rust org.opencontainers.image.source
🛡️ 镜像安全扫描
debian 12.5 Trivy 2026-07-07 05:08 查看完整报告
1497
低危 LOW
4900
中危 MEDIUM
1976
高危 HIGH
238
严重 CRITICAL
受影响目标 (5)
docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109 (debian 12.5) debian Conda conda-pkg Node.js node-pkg Python python-pkg rust-analyzer/Cargo.lock cargo

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109  docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109  docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109

Shell快速替换命令

sed -i 's#swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109  docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109  docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109'

镜像构建历史


# 2026-04-22 16:51:52  0.00B 
/bin/sh
                        
# 2026-02-22 18:36:59  1.26GB 
/bin/sh -c #(nop) COPY file:ec04adde02cdb4e88ed1095fd5e9f72b86ec24a85be0fe6254f6533a92e8799b in /swebench_matterhorn/swebench_instance.json 
                        
# 2026-02-22 18:36:51  0.00B 
/bin/sh -c #(nop) WORKDIR /rust-analyzer
                        
# 2026-02-22 18:36:51  0.00B 
/bin/sh -c <<-DOCKER_RUN_EOF
set -eux;
    git clone -o origin https://github.com/rust-lang/rust-analyzer /rust-analyzer;
    chmod -R 777 /rust-analyzer;
    cd /rust-analyzer;
    git reset --hard f6fc109fcb2bed2291320985fe75c6901839f4ba;
    ( export DEBIAN_FRONTEND=noninteractive ) || true;
    ( apt-get update -y -qq ) || true;
    ( apt-get install -y -qq curl ) || true;
    ( curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.78 ) || true;
    ( export PATH="/root/.cargo/bin:$PATH" ) || true;
    # Keep only the checked-out commit and remove refs/history that can point
    # to newer commits.
    git checkout --detach f6fc109fcb2bed2291320985fe75c6901839f4ba;
    for r in $(git remote); do
        git remote remove "$r";
    done;
    git for-each-ref --format='delete %(refname)' refs/heads refs/remotes refs/tags | git update-ref --stdin;
    git reflog expire --expire=now --expire-unreachable=now --all;
    git gc --prune=now;
                        
# 2026-02-22 18:35:54  0.00B 
/bin/sh -c #(nop) ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/conda/bin:$PATH
                        
# 2026-02-22 18:35:41  1.53GB 
/bin/sh -c #(nop) ENV NO_CONDA=1
                        
# 2026-02-22 18:35:34  0.00B 
/bin/sh -c mkdir -p /swebench_matterhorn     && tar -xzf /swebench_matterhorn_repo.tar.gz -C /swebench_matterhorn     && rm /swebench_matterhorn_repo.tar.gz     && mkdir -p /opt/conda/envs/swebench_matterhorn     && tar -xzf /swebench_matterhorn_env.tar.gz -C /opt/conda/envs/swebench_matterhorn     && rm /swebench_matterhorn_env.tar.gz     && /opt/conda/envs/swebench_matterhorn/bin/conda-unpack
                        
# 2026-02-22 18:35:27  0.00B 
/bin/sh -c #(nop) COPY file:61604c43c292b48546055579c93885a922428ac04b5a3f2bd7c87a6a8208dbd4 in / 
                        
# 2026-02-22 18:35:27  0.00B 
/bin/sh -c #(nop) COPY file:38d2cec6c3688d3db2fdf6a899d279ccf0f0bf78f9acc300722c98b6d67c4b26 in / 
                        
# 2026-02-22 18:35:26  0.00B 
/bin/sh -c wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py312_24.7.1-0-Linux-x86_64.sh -O ~/miniconda.sh &&     /bin/bash ~/miniconda.sh -b -p /opt/conda &&     rm ~/miniconda.sh &&     /opt/conda/bin/conda clean -tip &&     ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh &&     echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc
                        
# 2026-02-22 18:35:20  0.00B 
/bin/sh -c apt-get update --fix-missing &&     apt-get install -y bzip2 ca-certificates wget git &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*
                        
# 2026-02-22 18:35:14  0.00B 
/bin/sh -c #(nop) ENV PATH=/opt/conda/bin:$PATH
                        
# 2026-02-22 18:35:14  0.00B 
/bin/sh -c #(nop) ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
                        
# 2026-01-16 01:01:24  9.05KB 执行命令并创建新的镜像层
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c adduser --disabled-password --gecos 'dog' nonroot # buildkit
                        
# 2026-01-16 01:01:23  52.89MB 执行命令并创建新的镜像层
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt update && apt install -y wget git build-essential && rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2026-01-16 01:01:23  0.00B 设置环境变量 TZ
ENV TZ=Etc/UTC
                        
# 2026-01-16 01:01:23  0.00B 定义构建参数
ARG DEBIAN_FRONTEND=noninteractive
                        
# 2024-05-02 20:45:44  490.97MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux;     dpkgArch="$(dpkg --print-architecture)";     case "${dpkgArch##*-}" in         amd64) rustArch='x86_64-unknown-linux-gnu'; rustupSha256='a3d541a5484c8fa2f1c21478a6f6c505a778d473c21d60a18a4df5185d320ef8' ;;         armhf) rustArch='armv7-unknown-linux-gnueabihf'; rustupSha256='7cff34808434a28d5a697593cd7a46cefdf59c4670021debccd4c86afde0ff76' ;;         arm64) rustArch='aarch64-unknown-linux-gnu'; rustupSha256='76cd420cb8a82e540025c5f97bda3c65ceb0b0661d5843e6ef177479813b0367' ;;         i386) rustArch='i686-unknown-linux-gnu'; rustupSha256='cacdd10eb5ec58498cd95dbb7191fdab5fa4343e05daaf0fb7cdcae63be0a272' ;;         ppc64el) rustArch='powerpc64le-unknown-linux-gnu'; rustupSha256='b152711fb15fd629f0d4c2731cbf9167e6352da0ffcb2210447d80c010180f96' ;;         s390x) rustArch='s390x-unknown-linux-gnu'; rustupSha256='4ff9e7963ed0457e64cbb29d2b5a37496d1fa303f9300adc5251ee3c16bd3b30' ;;         *) echo >&2 "unsupported architecture: ${dpkgArch}"; exit 1 ;;     esac;     url="https://static.rust-lang.org/rustup/archive/1.27.0/${rustArch}/rustup-init";     wget "$url";     echo "${rustupSha256} *rustup-init" | sha256sum -c -;     chmod +x rustup-init;     ./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION --default-host ${rustArch};     rm rustup-init;     chmod -R a+w $RUSTUP_HOME $CARGO_HOME;     rustup --version;     cargo --version;     rustc --version; # buildkit
                        
# 2024-05-02 20:45:44  0.00B 设置环境变量 RUSTUP_HOME CARGO_HOME PATH RUST_VERSION
ENV RUSTUP_HOME=/usr/local/rustup CARGO_HOME=/usr/local/cargo PATH=/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUST_VERSION=1.78.0
                        
# 2024-05-02 20:45:44  0.00B 添加元数据标签
LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust
                        
# 2024-05-02 20:45:44  587.38MB 
/bin/sh -c set -ex; 	apt-get update; 	apt-get install -y --no-install-recommends 		autoconf 		automake 		bzip2 		default-libmysqlclient-dev 		dpkg-dev 		file 		g++ 		gcc 		imagemagick 		libbz2-dev 		libc6-dev 		libcurl4-openssl-dev 		libdb-dev 		libevent-dev 		libffi-dev 		libgdbm-dev 		libglib2.0-dev 		libgmp-dev 		libjpeg-dev 		libkrb5-dev 		liblzma-dev 		libmagickcore-dev 		libmagickwand-dev 		libmaxminddb-dev 		libncurses5-dev 		libncursesw5-dev 		libpng-dev 		libpq-dev 		libreadline-dev 		libsqlite3-dev 		libssl-dev 		libtool 		libwebp-dev 		libxml2-dev 		libxslt-dev 		libyaml-dev 		make 		patch 		unzip 		xz-utils 		zlib1g-dev 	; 	rm -rf /var/lib/apt/lists/*
                        
# 2024-05-02 20:45:44  176.68MB 
/bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		git 		mercurial 		openssh-client 		subversion 				procps 	; 	rm -rf /var/lib/apt/lists/*
                        
# 2024-05-02 20:45:44  48.44MB 
/bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		ca-certificates 		curl 		gnupg 		netbase 		sq 		wget 	; 	rm -rf /var/lib/apt/lists/*
                        
# 2024-05-02 20:45:44  0.00B 
/bin/sh -c #(nop)  CMD ["bash"]
                        
# 2024-05-02 20:45:44  116.56MB 
/bin/sh -c #(nop) ADD file:b9a9fc37b874060c713002ae1ac220f097edd7c6576116c22bb15aad8229b1b3 in / 
                        
                    

镜像信息

{
    "Id": "sha256:a30e86edd4b1c36f5dc6ba43d026e85ca827531664ccc008610a569b844d5f8e",
    "RepoTags": [
        "swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109"
    ],
    "RepoDigests": [
        "swerebenchv2/rust-lang-rust-analyzer@sha256:e7d4446ff27e75d45273567e038b8353bb23876a3fdbc1f559f07db56a4e89fc",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/swerebenchv2/rust-lang-rust-analyzer@sha256:68d6178bbd278bfd095134f99c9b9a4351a0074cdc4b5dad1094336c2869316d"
    ],
    "Parent": "",
    "Comment": "FROM docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109",
    "Created": "2026-04-22T08:51:49.930887101Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "f8cfb8bc3ff1",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "RUSTUP_HOME=/usr/local/rustup",
            "CARGO_HOME=/usr/local/cargo",
            "RUST_VERSION=1.78.0",
            "TZ=Etc/UTC",
            "LANG=C.UTF-8",
            "LC_ALL=C.UTF-8",
            "NO_CONDA=1",
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/conda/bin:/opt/conda/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
        ],
        "Cmd": [
            "bash"
        ],
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/rust-analyzer",
        "Entrypoint": null,
        "OnBuild": [],
        "Labels": {
            "io.buildah.version": "1.38.1",
            "org.opencontainers.image.source": "https://github.com/rust-lang/docker-rust"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 4258451420,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/145cd4effa3d89e4103e33ed17d5a8b7e8f0127f0069f4d45a0dc7e06bc8dd4e/diff:/var/lib/docker/overlay2/0174a92a7f734ee6332e81ea87d6ee81c3b584adbd6a8b35d69cb3d6fabbe91a/diff:/var/lib/docker/overlay2/cd66b6b46fd3ecf95015371be9d078832fc4f0071f49522805720755dc4261d2/diff:/var/lib/docker/overlay2/edd33232c3f29e8a3624f686b89dbdb3e49646852d36e0d9df0473f7dcc05384/diff:/var/lib/docker/overlay2/5b02ca683b1aa16f88dcae820c87874fa0a362ebf377e11465b1f61300e71e3e/diff:/var/lib/docker/overlay2/91b441dd21161802a4baf90524a3908f825b938ed4b1fa5e245d89da3cdb4cd7/diff:/var/lib/docker/overlay2/8059b2d2129448dd65e12905ee77a55ca55a56543838258064e149e595ee80b8/diff:/var/lib/docker/overlay2/6554a3914b4e4cff725f739108daccae2f614d399e7533ed7f17a575b0a759f2/diff:/var/lib/docker/overlay2/bb093367d710e1da35b7737857311fe4a3820ee85839da403699347a00852f63/diff",
            "MergedDir": "/var/lib/docker/overlay2/490260f0077f83f8b9263248190b41869cee469e90de5f1e66985cac7e14f350/merged",
            "UpperDir": "/var/lib/docker/overlay2/490260f0077f83f8b9263248190b41869cee469e90de5f1e66985cac7e14f350/diff",
            "WorkDir": "/var/lib/docker/overlay2/490260f0077f83f8b9263248190b41869cee469e90de5f1e66985cac7e14f350/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:bbe1a212f7e9f1baaef62491a51254f3adda514c22632ea719f62713fad80f77",
            "sha256:d7d4c2f9d26b2dad32b86ed9739919f76ae423f16aa103924c183048810290de",
            "sha256:8845ab872c1ce04cf64c4755aa585386c7ebe1b7633d977d275d6f2d2146000d",
            "sha256:734c0f0b65c287d2ffe5a9a547985c4f18c8f2cc538ac315127a3f4e9dfadd21",
            "sha256:17b9f16c1fd1fee4a1eeccda91e2bc3c3e8d6e19a7d8b7004777e2a7759b6c56",
            "sha256:bf20a78bdec86c991d0746acea564e876bbaa388f9efe5af155491633fd74606",
            "sha256:7b453ee8d47d89d81c867dae1abca5bcadb71b540389ec9a250703d673360a8f",
            "sha256:af8ac88cc5feb176602bcbeec5966ad38fc723db1adb373cb095271b0d00ff43",
            "sha256:f0d40cadc8eda8900ff360e69d55bd772b57a78c7788d29b13a0b51fe3916b83",
            "sha256:5b27846a30c5821ce7ace913adfdc34cbdd8fb40cba6e53433740004d067d00d"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-07T05:04:12.635042621+08:00"
    }
}

更多版本

docker.io/swerebenchv2/rust-lang-rust-analyzer:14890-21e5dc2

linux/amd64 docker.io7.66GB2026-07-07 01:35
9

docker.io/swerebenchv2/rust-lang-rust-analyzer:14891-efd3094

linux/amd64 docker.io7.66GB2026-07-07 01:56
9

docker.io/swerebenchv2/rust-lang-rust-analyzer:13854-74ae2dd

linux/amd64 docker.io4.17GB2026-07-07 01:58
7

docker.io/swerebenchv2/rust-lang-rust-analyzer:13730-f9bd487

linux/amd64 docker.io4.20GB2026-07-07 02:02
7

docker.io/swerebenchv2/rust-lang-rust-analyzer:13463-d3b7e94

linux/amd64 docker.io5.97GB2026-07-07 02:07
9

docker.io/swerebenchv2/rust-lang-rust-analyzer:15970-237712f

linux/amd64 docker.io4.27GB2026-07-07 02:12
9

docker.io/swerebenchv2/rust-lang-rust-analyzer:15405-70fa270

linux/amd64 docker.io6.12GB2026-07-07 02:20
9

docker.io/swerebenchv2/rust-lang-rust-analyzer:14580-b218009

linux/amd64 docker.io5.37GB2026-07-07 02:21
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:17985-914a1ca

linux/amd64 docker.io6.29GB2026-07-07 02:38
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:13750-a0296c2

linux/amd64 docker.io4.20GB2026-07-07 02:39
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:13303-97f8f4a

linux/amd64 docker.io4.25GB2026-07-07 02:45
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:13147-f02cd0a

linux/amd64 docker.io4.17GB2026-07-07 02:57
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:17882-36a071c

linux/amd64 docker.io4.26GB2026-07-07 03:04
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:18390-f0f2605

linux/amd64 docker.io3.16GB2026-07-07 03:29
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:17916-e4edf6c

linux/amd64 docker.io4.26GB2026-07-07 03:54
13

docker.io/swerebenchv2/rust-lang-rust-analyzer:17789-aa00ddc

linux/amd64 docker.io5.02GB2026-07-07 03:59
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:17505-4e836c6

linux/amd64 docker.io4.23GB2026-07-07 04:05
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:19137-f5e7172

linux/amd64 docker.io3.20GB2026-07-07 04:07
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:18172-b3a3bf7

linux/amd64 docker.io3.16GB2026-07-07 04:11
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:18075-e35227d

linux/amd64 docker.io3.16GB2026-07-07 04:14
14

docker.io/swerebenchv2/rust-lang-rust-analyzer:17893-64a1405

linux/amd64 docker.io4.27GB2026-07-07 04:18
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:17832-34d9409

linux/amd64 docker.io3.19GB2026-07-07 04:22
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:16967-899db83

linux/amd64 docker.io4.23GB2026-07-07 04:26
12

docker.io/swerebenchv2/rust-lang-rust-analyzer:17258-f6fc109

linux/amd64 docker.io4.26GB2026-07-07 05:06
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:16813-e265e3d

linux/amd64 docker.io4.24GB2026-07-07 05:10
13

docker.io/swerebenchv2/rust-lang-rust-analyzer:18382-f9935be

linux/amd64 docker.io3.16GB2026-07-07 06:00
10

docker.io/swerebenchv2/rust-lang-rust-analyzer:16385-1ab8c7f

linux/amd64 docker.io5.58GB2026-07-07 06:25
10

docker.io/swerebenchv2/rust-lang-rust-analyzer:19158-40e4f91

linux/amd64 docker.io3.20GB2026-07-07 06:38
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:14851-e8ae2d3

linux/amd64 docker.io4.23GB2026-07-07 06:41
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:18385-f9935be

linux/amd64 docker.io3.16GB2026-07-07 06:47
11

docker.io/swerebenchv2/rust-lang-rust-analyzer:17757-c8e41d9

linux/amd64 docker.io5.02GB2026-07-07 07:04
10
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×