-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (63 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
74 lines (63 loc) · 1.67 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "endbasic-web"
version = "0.11.99" # ENDBASIC-VERSION
license = "Apache-2.0"
authors = ["Julio Merino <jmmv@endbasic.dev>"]
categories = ["development-tools", "parser-implementations"]
keywords = ["basic", "interpreter", "learning", "programming"]
description = "The EndBASIC programming language - web interface"
homepage = "https://www.endbasic.dev/"
repository = "https://github.com/endbasic/endbasic"
readme = "README.md"
edition = "2024"
build = "build.rs"
publish = false
[lints]
workspace = true
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
async-channel = "2.2"
async-trait = "0.1"
console_error_panic_hook = { version = "0.1", optional = true }
js-sys = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
time = { version = "0.3", features = ["serde", "std", "wasm-bindgen"] }
url = "2.2"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
[dependencies.endbasic-client]
version = "0.11.99" # ENDBASIC-VERSION
path = "../client"
[dependencies.endbasic-core]
version = "0.11.99" # ENDBASIC-VERSION
path = "../core"
[dependencies.endbasic-repl]
version = "0.11.99" # ENDBASIC-VERSION
path = "../repl"
[dependencies.endbasic-std]
version = "0.11.99" # ENDBASIC-VERSION
path = "../std"
[dependencies.web-sys]
version = "0.3.77"
features = [
"CanvasRenderingContext2d",
"ContextAttributes2d",
"EventTarget",
"HtmlCanvasElement",
"ImageData",
"InputEvent",
"KeyboardEvent",
"Location",
"Storage",
"TextMetrics",
"Window",
]
[build-dependencies.vergen]
version = "8"
features = ["build", "git", "gitcl"]
[dev-dependencies]
wasm-bindgen-test = "0.3"