mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
33 lines
996 B
TOML
33 lines
996 B
TOML
[package]
|
|
name = "roc_linker"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
repository = "https://github.com/rtfeldman/roc"
|
|
edition = "2018"
|
|
description = "A surgical linker for Roc"
|
|
|
|
[lib]
|
|
name = "roc_linker"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "link"
|
|
path = "src/main.rs"
|
|
test = false
|
|
bench = false
|
|
|
|
[dependencies]
|
|
roc_mono = { path = "../compiler/mono" }
|
|
roc_build = { path = "../compiler/build", default-features = false }
|
|
roc_collections = { path = "../compiler/collections" }
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
clap = { version = "= 3.0.0-beta.5", default-features = false, features = ["std", "color", "suggestions"] }
|
|
iced-x86 = { version = "1.15.0", default-features = false, features = ["std", "decoder", "op_code_info", "instr_info"] }
|
|
memmap2 = "0.5.0"
|
|
object = { version = "0.26.2", features = ["read", "write"] }
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
|
bincode = "1.3.3"
|
|
target-lexicon = "0.12.2"
|
|
tempfile = "3.2.0"
|