roc/Cargo.toml
2019-11-21 06:42:36 -05:00

36 lines
1.2 KiB
TOML

[package]
name = "roc"
version = "0.1.0"
authors = ["Richard Feldman <oss@rtfeldman.com>"]
[dependencies]
dogged = { version = "0.2.0", optional = true }
log = "0.4.8"
petgraph = { version = "0.4.5", optional = true }
im-rc = "14.0.0"
fraction = "0.6.2"
num = "0.2.0"
fxhash = "0.2.1"
bumpalo = "2.6.0"
# To upgrade Inkwell, go to the LLVM-8.0 branch and choose a later commit:
#
# https://github.com/TheDan64/inkwell/tree/llvm8-0
#
# NOTE 1: Breaking API changes get pushed directly to that branch, so do not
# depend on it directly! Otherwise, `cargo update` can potentially break our build.
#
# NOTE 2: For some reason, on GitHub Actions, including "rev =" here is not
# sufficient to convince cargo to download the Inkwell sources. So when you
# update, you have to first push a commit that *omits* the "rev =" part here,
# so that GH Actions will download the repo properly, and then after that runs
# in CI (and caches the downloaded repo), re-commit the proper rev and leave it
# that way until the next Inkwell upgrade.
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "fa2631a39647726e4230bc4130a14bd451e038bc" }
[dev-dependencies]
pretty_assertions = "0.5.1"
maplit = "1.0.1"
indoc = "0.3.3"
quickcheck = "0.8"
quickcheck_macros = "0.8"