roc/editor/Cargo.toml

65 lines
1.7 KiB
TOML
Raw Normal View History

2020-05-04 04:38:36 +03:00
[package]
name = "roc_editor"
version = "0.1.0"
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
license = "UPL-1.0"
2020-05-04 04:38:36 +03:00
edition = "2018"
description = "An editor for Roc"
2020-11-12 22:27:10 +03:00
exclude = ["src/shaders/*.spv"]
2020-05-04 04:38:36 +03:00
[dependencies]
roc_collections = { path = "../compiler/collections" }
roc_can = { path = "../compiler/can" }
roc_parse = { path = "../compiler/parse" }
roc_region = { path = "../compiler/region" }
roc_module = { path = "../compiler/module" }
roc_problem = { path = "../compiler/problem" }
roc_types = { path = "../compiler/types" }
roc_unify = { path = "../compiler/unify" }
roc_fmt = { path = "../compiler/fmt" }
2020-05-04 04:38:36 +03:00
roc_reporting = { path = "../compiler/reporting" }
2021-04-10 19:58:02 +03:00
roc_solve = { path = "../compiler/solve" }
2020-12-21 15:55:40 +03:00
ven_graph = { path = "../vendor/pathfinding" }
2021-04-10 19:58:02 +03:00
im = "15" # im and im-rc should always have the same version!
im-rc = "15" # im and im-rc should always have the same version!
2021-04-18 15:36:47 +03:00
bumpalo = { version = "3.6.1", features = ["collections"] }
2020-06-01 03:13:43 +03:00
inlinable_string = "0.1"
arraystring = "0.3.0"
2020-10-22 04:48:01 +03:00
libc = "0.2"
page_size = "0.4"
winit = "0.24"
wgpu = "0.8"
2020-05-30 08:08:17 +03:00
glyph_brush = "0.7"
log = "0.4"
zerocopy = "0.3"
env_logger = "0.8"
2020-05-30 08:08:17 +03:00
futures = "0.3"
wgpu_glyph = "0.12"
cgmath = "0.18.0"
snafu = { version = "0.6", features = ["backtraces"] }
colored = "2"
pest = "2.1"
pest_derive = "2.1"
2021-01-11 21:46:15 +03:00
ropey = "1.2.0"
2021-01-30 18:23:54 +03:00
copypasta = "0.7.1"
indoc = "1.0"
2021-02-23 21:43:50 +03:00
palette = "0.5"
# confy is currently unused but should not be removed
confy = { git = 'https://github.com/rust-cli/confy', features = [
"yaml_conf"
], default-features = false }
serde = { version = "1.0.123", features = ["derive"] }
nonempty = "0.6.0"
2020-12-30 15:40:36 +03:00
2020-12-02 18:43:54 +03:00
[dependencies.bytemuck]
version = "1.4"
features = ["derive"]
2020-05-05 04:06:36 +03:00
2020-05-04 04:38:36 +03:00
[dev-dependencies]
pretty_assertions = "0.6"
2020-05-04 04:38:36 +03:00
maplit = "1.0.1"
quickcheck = "1.0"
quickcheck_macros = "1.0"
2021-01-16 21:33:23 +03:00
criterion = "0.3"
rand = "0.8.2"