2020-05-04 04:38:36 +03:00
[ package ]
name = "roc_editor"
2022-08-03 12:41:19 +03:00
version = "0.0.1"
2021-04-10 15:07:38 +03:00
authors = [ "The Roc Contributors" ]
2021-04-15 06:26:14 +03:00
license = "UPL-1.0"
2022-05-16 18:04:17 +03:00
edition = "2021"
2020-05-04 04:38:36 +03:00
description = "An editor for Roc"
2021-11-02 23:24:22 +03:00
[ package . metadata . cargo-udeps . ignore ]
# confy is currently unused but should not be removed
normal = [ "confy" ]
#development = []
#build = []
2021-11-05 14:27:17 +03:00
[ features ]
default = [ ]
with_sound = [ "rodio" ]
2020-05-04 04:38:36 +03:00
[ dependencies ]
2021-09-25 18:14:32 +03:00
roc_ast = { path = "../ast" }
2020-05-04 04:38:36 +03:00
roc_collections = { path = "../compiler/collections" }
2021-08-13 20:54:35 +03:00
roc_load = { path = "../compiler/load" }
roc_builtins = { path = "../compiler/builtins" }
2020-05-04 04:38:36 +03:00
roc_can = { path = "../compiler/can" }
2021-09-25 18:14:32 +03:00
roc_code_markup = { path = "../code_markup" }
2020-05-04 04:38:36 +03:00
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" }
2021-04-12 22:26:20 +03:00
roc_unify = { path = "../compiler/unify" }
2022-10-15 13:36:06 +03:00
roc_utils = { path = "../utils" }
2022-11-21 01:03:17 +03:00
roc_packaging = { path = "../packaging" }
2021-11-16 21:22:43 +03:00
roc_reporting = { path = "../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" }
2023-01-21 18:06:17 +03:00
bumpalo = { version = "3.11.1" , features = [ "collections" ] }
2021-11-30 16:06:36 +03:00
arrayvec = "0.7.2"
2022-10-10 16:00:20 +03:00
libc = "0.2.135"
2021-11-06 23:24:45 +03:00
page_size = "0.4.2"
2021-11-08 14:13:18 +03:00
# once winit 0.26 is out, check if copypasta can be updated simultaneously so they use the same versions for their dependencies. This will save build time.
2022-06-30 05:33:47 +03:00
winit = "0.26.0"
wgpu = "0.12.0"
wgpu_glyph = "0.16.0"
2022-08-30 15:33:54 +03:00
glyph_brush = "0.7.5"
2021-11-06 23:24:45 +03:00
log = "0.4.14"
2022-08-30 13:15:46 +03:00
futures = "0.3.24"
2021-03-08 14:25:55 +03:00
cgmath = "0.18.0"
2022-06-30 05:33:47 +03:00
snafu = { version = "0.7.1" , features = [ "backtraces" ] }
2021-11-06 23:24:45 +03:00
colored = "2.0.0"
2022-09-12 13:33:06 +03:00
pest = "2.3.1"
2022-09-13 00:08:45 +03:00
pest_derive = "2.3.1"
2022-06-30 05:33:47 +03:00
copypasta = "0.8.1"
2022-08-13 19:48:58 +03:00
palette = "0.6.1"
2021-03-06 08:19:06 +03:00
confy = { git = 'https://github.com/rust-cli/confy' , features = [
"yaml_conf"
] , default-features = false }
2022-09-12 08:28:20 +03:00
serde = { version = "1.0.144" , features = [ "derive" ] }
2022-08-13 19:49:37 +03:00
nonempty = "0.8.0"
2022-06-30 05:33:47 +03:00
rodio = { version = "0.15.0" , optional = true } # to play sounds
2021-09-29 14:48:53 +03:00
threadpool = "1.8.1"
2020-12-30 15:40:36 +03:00
2022-12-02 06:33:04 +03:00
fs_extra . workspace = true
2020-12-02 18:43:54 +03:00
[ dependencies . bytemuck ]
2022-08-22 08:24:59 +03:00
version = "1.12.1"
2020-12-02 18:43:54 +03:00
features = [ "derive" ]
2020-05-05 04:06:36 +03:00
2020-05-04 04:38:36 +03:00
[ dev-dependencies ]
2021-11-06 23:24:45 +03:00
rand = "0.8.4"
2021-11-02 23:00:48 +03:00
tempfile = "3.2.0"
2022-06-30 05:33:47 +03:00
uuid = { version = "1.1.2" , features = [ "v4" ] }