-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (38 loc) · 1.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "mech-notebook"
version = "0.1.0"
authors = ["Corey Montella <[email protected]>"]
description = "Gui notebook interface for the Mech programming language."
documentation = "http://docs.mech-lang.org"
homepage = "https://mech-lang.org"
repository = "https://github.com/mech-lang/notebook"
keywords = ["mech", "language", "programming", "dataflow", "runtime"]
categories = ["science::robotics", "science", "game-engines", "web-programming"]
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
[badges]
gitlab = { repository = "mech-lang/notebook", branch = "main" }
maintenance = { status = "actively-developed" }
[dependencies]
mech-core = "0.1"
mech-utilities = "0.1"
mech-syntax = "0.1"
mech-gui = "0.1"
lazy_static = "1.4.0"
eframe = { version = "0.20.1"}
image = { version = "0.24.3", default-features = false, features = [
"ico",
"jpeg",
"png",
] }
tracing-subscriber = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.7"
tracing-wasm = "0.2.1"
[workspace]
[build-dependencies]
winres = "0.1.12"
[package.metadata.winres]
OriginalFilename = "MECH.EXE"
LegalCopyright = "Copyright © 2023"