# Bibliotecas Autenticar no crates via github site: https://crates.io Em acount settings criar novo token copiar a chave Efetuar o login ```bash cargo login # colar a chava gerada no site ``` Criar projeto de biblioteca ```bash mkdir curso_09_libs cd curso_09_libs cargo init --lib ``` Editar arquivo Cargo.toml conforme abaixo ```ini [package] name = "curso_09_libs" version = "0.1.1" edition = "2021" authors = ["EuardoPagotto "] 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] ``` Crie o repositorio git ```bash git add . git commit -m "inicial" cargo publish ```