roc/crates/editor/Cargo.toml

73 lines
2.1 KiB
TOML
Raw Normal View History

2020-05-04 04:38:36 +03:00
[package]
name = "roc_editor"
version = "0.0.1"
2021-04-10 15:07:38 +03:00
authors = ["The Roc Contributors"]
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]
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" }
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" }
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" }
bumpalo = { version = "3.11.1", features = ["collections"] }
2021-11-30 16:06:36 +03:00
arrayvec = "0.7.2"
libc = "0.2.135"
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"
glyph_brush = "0.7.5"
log = "0.4.14"
futures = "0.3.24"
cgmath = "0.18.0"
2022-06-30 05:33:47 +03:00
snafu = { version = "0.7.1", features = ["backtraces"] }
colored = "2.0.0"
pest = "2.3.1"
pest_derive = "2.3.1"
2022-06-30 05:33:47 +03:00
copypasta = "0.8.1"
palette = "0.6.1"
confy = { git = 'https://github.com/rust-cli/confy', features = [
"yaml_conf"
], default-features = false }
serde = { version = "1.0.144", features = ["derive"] }
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]
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]
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"] }