mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
b286adaae4
# Important Notes The command to run the gui dev environment has been changed. Invoking the old command will print a message about that. From now on, use `pnpm dev:gui2` in repository root.
19 lines
418 B
TOML
19 lines
418 B
TOML
[package]
|
|
name = "rust-ffi"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-parser = { path = "../../lib/rust/parser" }
|
|
enso-doc-parser = { path = "../../lib/rust/parser/doc-parser" }
|
|
wasm-bindgen = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
console_error_panic_hook = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|