Skip to content

Commit 4be864d

Browse files
committed
将客户端单独分离出来
1 parent 7746e16 commit 4be864d

143 files changed

Lines changed: 83 additions & 13629 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/config.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
[alias]
2-
mm = "run --bin manager"
3-
cc = "run --bin client"
4-
dd = "doc --no-deps"
5-
ci = "run --package xtask --"
6-
web = "run --bin manager"
2+
dev = "run --package client"
3+
ci = "run --package xtask --"

.github/workflows/release-manager.yml

Lines changed: 0 additions & 81 deletions
This file was deleted.
Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release Client
33
on:
44
push:
55
tags:
6-
- "c*"
6+
- "v*"
77

88
permissions:
99
contents: write
@@ -27,19 +27,14 @@ jobs:
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v4
30-
31-
- name: Install dependencies for Linux
32-
if: runner.os == 'Linux'
33-
run: |-
34-
sudo apt install libssl-dev
35-
30+
3631
- name: Cargo build
3732
env:
3833
MP_RUSTC_TARGET: ${{ matrix.rustc-target }}
3934
run: |-
4035
rustup update ${{ env.rust-version }} && rustup default ${{ env.rust-version }}
4136
rustup target add ${{ matrix.rustc-target }}
42-
cargo ci client
37+
cargo ci
4338
4439
- name: Release
4540
uses: softprops/action-gh-release@v2

.vscode/settings.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"rust-analyzer.linkedProjects": [
3-
"./manager/Cargo.toml",
43
"./client/Cargo.toml",
5-
"./shared/Cargo.toml",
64
"./config_template_derive/Cargo.toml"
75
],
86
"rust-analyzer.checkOnSave": true

0 commit comments

Comments
 (0)