mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 05:41:32 +03:00
23425718ff
Original commit: 41895d7a94
54 lines
2.2 KiB
TOML
54 lines
2.2 KiB
TOML
[package]
|
|
name = "ide"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@luna-lang.org>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
ast = { version = "0.1.0" , path = "ast/impl" }
|
|
basegl = { version = "0.1.0" , path = "../core" }
|
|
basegl-core-msdf-sys = { version = "0.1.0" , path = "../core/msdf-sys" }
|
|
basegl-system-web = { version = "0.1.0" , path = "../system/web" }
|
|
data = { version = "0.1.0" , path = "../data" }
|
|
enso-frp = { version = "0.1.0" , path = "../frp" }
|
|
enso-prelude = { version = "0.1.0" , path = "../prelude" }
|
|
file-manager-client = { version = "0.1.0" , path = "file-manager" }
|
|
json-rpc = { version = "0.1.0" , path = "json-rpc" }
|
|
parser = { version = "0.1.0" , path = "parser" }
|
|
shapely = { version = "0.1.0" , path = "../shapely/impl" }
|
|
utils = { version = "0.1.0" , path = "utils" }
|
|
|
|
console_error_panic_hook = { version = "0.1.6" }
|
|
failure = { version = "0.1.6" }
|
|
flo_stream = { version = "0.4.0" }
|
|
futures = { version = "0.3.1" }
|
|
nalgebra = { version = "0.19.0" }
|
|
js-sys = { version = "0.3.35" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0" }
|
|
uuid = { version = "0.8", features = ["serde", "v5"] }
|
|
wasm-bindgen = { version = "=0.2.58" }
|
|
wasm-bindgen-test = { version = "0.3.8" }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
websocket = "0.23.0"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.22"
|
|
features = [
|
|
'Blob',
|
|
'console',
|
|
'CloseEvent',
|
|
'Document',
|
|
'Element',
|
|
"ErrorEvent",
|
|
"MessageEvent",
|
|
'HtmlElement',
|
|
'Node',
|
|
'WebSocket',
|
|
'Window',
|
|
]
|