finsihed ch14.1 and more than halfway through ch14.2
Some checks failed
Test Gitea Actions / first (push) Successful in 12s
Test Gitea Actions / check-code (push) Failing after 21s
Test Gitea Actions / test (push) Has been skipped
Test Gitea Actions / documentation-check (push) Has been skipped

This commit is contained in:
2025-02-25 17:02:50 -07:00
parent c47bd9cfae
commit f3ec0d98cc
10 changed files with 609 additions and 13 deletions

16
Cargo and Cratesio.md Normal file
View File

@ -0,0 +1,16 @@
# More About Cargo and Crates.io
Previously Cargo has only been used to do basic features of Cargo, like build, run, and test the code.
Cargo can do so much more
This chapter will go over some more advanced features like:
- [Customize your build](./Custome%20Build%20Profiles.md) through release profiles
- [Publish libraries](./Publishing%20libraries.md) on [crates.io](https://crates.io/)
- Organize large projects with workspaces
- Install binaries from [crates.io](https://crates.io/)
- Extend Cargo using custom commands
Cargo can do even more than what will be covered.
You can chack [the documentation](https://doc.rust-lang.org/cargo/) for a full explanation of all its features.