mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
27 lines
764 B
TOML
27 lines
764 B
TOML
[package]
|
|
name = "roc_can"
|
|
version = "0.1.0"
|
|
authors = ["Richard Feldman <oss@rtfeldman.com>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
roc_collections = { path = "../collections" }
|
|
roc_region = { path = "../region" }
|
|
roc_module = { path = "../module" }
|
|
roc_parse = { path = "../parse" }
|
|
roc_problem = { path = "../problem" }
|
|
roc_types = { path = "../types" }
|
|
ven_graph = { path = "../../vendor/pathfinding" }
|
|
im = "14" # im and im-rc should always have the same version!
|
|
im-rc = "14" # im and im-rc should always have the same version!
|
|
bumpalo = { version = "3.2", features = ["collections"] }
|
|
inlinable_string = "0.1"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|
|
maplit = "1.0.1"
|
|
indoc = "0.3.3"
|
|
quickcheck = "0.8"
|
|
quickcheck_macros = "0.8"
|