mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-01 21:40:58 +00:00
updating rust package documentation
This commit is contained in:
parent
f0d6e418fa
commit
f3bdb5f321
98 changed files with 140 additions and 15 deletions
|
|
@ -4,6 +4,7 @@ edition = "2021"
|
|||
license = "UPL-1.0"
|
||||
name = "roc_unify"
|
||||
version = "0.0.1"
|
||||
description = "Implements Roc's unification algorithm, the heartstone of Roc's type inference."
|
||||
|
||||
[dependencies]
|
||||
bitflags = "1.3.2"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
//! Implements Roc's unification algorithm, the heartstone of Roc's
|
||||
//! [type inference](https://en.wikipedia.org/wiki/Type_inference).
|
||||
#![warn(clippy::dbg_macro)]
|
||||
// See github.com/roc-lang/roc/issues/800 for discussion of the large_enum_variant check.
|
||||
#![allow(clippy::large_enum_variant)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue