mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 18:08:55 +03:00
71 lines
2.0 KiB
TOML
71 lines
2.0 KiB
TOML
[package]
|
|
name = "roc_editor"
|
|
version = "0.1.0"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2018"
|
|
description = "An editor for Roc"
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
# confy is currently unused but should not be removed
|
|
normal = ["confy"]
|
|
#development = []
|
|
#build = []
|
|
|
|
[features]
|
|
default = []
|
|
with_sound = ["rodio"]
|
|
|
|
[dependencies]
|
|
roc_ast = { path = "../ast" }
|
|
roc_collections = { path = "../compiler/collections" }
|
|
roc_load = { path = "../compiler/load" }
|
|
roc_builtins = { path = "../compiler/builtins" }
|
|
roc_can = { path = "../compiler/can" }
|
|
roc_code_markup = { path = "../code_markup"}
|
|
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_reporting = { path = "../reporting" }
|
|
roc_solve = { path = "../compiler/solve" }
|
|
ven_graph = { path = "../vendor/pathfinding" }
|
|
bumpalo = { version = "3.8.0", features = ["collections"] }
|
|
arrayvec = "0.7.2"
|
|
libc = "0.2.106"
|
|
page_size = "0.4.2"
|
|
# 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.
|
|
winit = "0.25.0"
|
|
wgpu = "0.11.0"
|
|
wgpu_glyph = "0.15.1"
|
|
glyph_brush = "0.7.2"
|
|
log = "0.4.14"
|
|
env_logger = "0.9.0"
|
|
futures = "0.3.17"
|
|
cgmath = "0.18.0"
|
|
snafu = { version = "0.6.10", features = ["backtraces"] }
|
|
colored = "2.0.0"
|
|
pest = "2.1.3"
|
|
pest_derive = "2.1.0"
|
|
copypasta = "0.7.1"
|
|
palette = "0.6.0"
|
|
confy = { git = 'https://github.com/rust-cli/confy', features = [
|
|
"yaml_conf"
|
|
], default-features = false }
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
|
nonempty = "0.7.0"
|
|
fs_extra = "1.2.0"
|
|
rodio = { version = "0.14.0", optional = true } # to play sounds
|
|
threadpool = "1.8.1"
|
|
|
|
[dependencies.bytemuck]
|
|
version = "1.7.2"
|
|
features = ["derive"]
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.4"
|
|
tempfile = "3.2.0"
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|