Glossary coding Term Page

crate

What the compiler builds independently

crate #coding#rust
Korean version

Related Concepts

Core Idea

crate is What the compiler builds independently. src/main.rs starts a binary crate, src/lib.rs starts a library crate. It usually makes the most sense alongside package, Module.

Why It Matters Here

Mathbong reuses this term across rust posts as shared vocabulary.

Posts Mentioning This Concept