-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (62 loc) · 1.74 KB
/
Cargo.toml
File metadata and controls
68 lines (62 loc) · 1.74 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
[package]
name = "goboscript"
version = "3.3.0"
edition = "2021"
description = "goboscript is the Scratch compiler."
license = "MIT"
authors = ["Priyanshu Dangare <aspizu@protonmail.com>"]
homepage = "https://aspiz.uk/goboscript"
repository = "https://github.com/aspizu/goboscript"
documentation = "https://aspiz.uk/goboscript/docs"
categories = ["compilers"]
[dependencies]
annotate-snippets = "0.11.4"
anyhow = "1.0.91"
arcstr = { version = "1.2.0", features = ["serde"] }
base64 = "0.22.1"
chrono = "0.4"
clap = { version = "4.5.20", features = ["derive"] }
clap_complete_command = "0.6.1"
clap_derive = "4.5.18"
colored = "3.0.0"
csscolorparser = "0.7.0"
directories = "6.0.0"
fast-float2 = "0.2.3"
fxhash = "0.2.1"
glob = "0.3.1"
reqwest = { version = "0.12", features = ["blocking", "json"] }
lalrpop-util = "0.22.0"
log = "0.4.22"
logos = "0.15"
md-5 = "0.10.6"
pretty_env_logger = "0.5.0"
semver = "1.0.25"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
suggestions = "0.1.1"
toml = "0.8.19"
walkdir = "2.5.0"
zip = { version = "3.0.0", default-features = false, features = ["deflate"] }
wasm-bindgen = "0.2"
console_error_panic_hook = "0.1.7"
serde-wasm-bindgen = "0.6.5"
js-sys = "0.3.77"
tsify = { version = "0.5.5", default-features = false, features = ["js"] }
tempfile = "3.27.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
inquire = "0.7.5"
rand = "0.9.1"
[build-dependencies]
lalrpop = "0.22.0"
[lib]
name = "libgoboscript"
crate-type = ["cdylib", "rlib"]
# <https://github.com/rustwasm/wasm-pack/issues/1441>
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["--enable-bulk-memory", "--enable-nontrapping-float-to-int"]
[profile.release]
debug = false
strip = true
lto = true
codegen-units = 1
panic = "abort"