2个版本

0.1.1 2024年4月20日
0.1.0 2024年4月20日

72 in #functions

MIT 许可证

3KB

在crates.io通过github站点认证:[https://crates.io](https://crates.io) 在账户设置中创建新token并复制密钥

登录

cargo login
# colar a chava gerada no site

创建库项目

mkdir curso_09_libs
cd curso_09_libs
cargo init --lib

按照以下编辑 Cargo.toml 文件

[package]
name = "curso_09_libs"
version = "0.1.1"
edition = "2021"
authors = ["EuardoPagotto <[email protected]>"]
description = "Teste de biblioteca"
homepage = "http://github.com/EduardoPagotto"
repository = "http://github.com/EduardoPagotto/curso_09_libs.git"
documentation = "http://github.com/EduardoPagotto/curso_09_libs/README.md"
license = "MIT"
keywords = ["bibliotecas","funcoes"]
categories = ["functions"]

[dependencies]

创建git仓库

git add .
git commit -m "inicial"

cargo publish

在runtime依赖中