mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
1a9323ecdc
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.133 to 0.2.135. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.133...0.2.135) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
70 lines
2.0 KiB
TOML
70 lines
2.0 KiB
TOML
[package]
|
|
name = "roc_editor"
|
|
version = "0.0.1"
|
|
authors = ["The Roc Contributors"]
|
|
license = "UPL-1.0"
|
|
edition = "2021"
|
|
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.11.0", features = ["collections"] }
|
|
arrayvec = "0.7.2"
|
|
libc = "0.2.135"
|
|
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.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"
|
|
snafu = { version = "0.7.1", features = ["backtraces"] }
|
|
colored = "2.0.0"
|
|
pest = "2.3.1"
|
|
pest_derive = "2.3.1"
|
|
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"
|
|
fs_extra = "1.2.0"
|
|
rodio = { version = "0.15.0", optional = true } # to play sounds
|
|
threadpool = "1.8.1"
|
|
|
|
[dependencies.bytemuck]
|
|
version = "1.12.1"
|
|
features = ["derive"]
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.4"
|
|
tempfile = "3.2.0"
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|