1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
- ------
```toml
authors = ["Your Name <your.email@example.com>"] # 改为实际作者
repository = "https://github.com/yourusername/fbc-starter" # 改为实际仓库
homepage = "https://github.com/yourusername/fbc-starter" # 改为实际主页(可选)
```
如果使用双许可证,需要创建 `LICENSE-APACHE` 文件。
```bash
git add .
git commit -m "Prepare for crates.io release"
git push
```
1. 2.3.4.
```bash
cargo login <your-api-token>
cargo package
cargo publish
```
- ---
- --