-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (36 loc) · 980 Bytes
/
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
[package]
name = "frd_lisp"
version = "0.1.0"
authors = [
"Adrian Bielsa <[email protected]>",
"Fran Guijarro <[email protected]>",
"Juan Bono <[email protected]>",
"Lucas Spigariol <[email protected]>",
"Nicolas Ulmete <[email protected]>",
"Sergio Viera <[email protected]>"
]
edition = "2021"
build = "build.rs"
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[features]
default = ["wasm"]
wasm = ["wasm-bindgen"]
[lib]
name = "frd_lisp"
crate-type = ["rlib", "cdylib"]
[build-dependencies]
lalrpop = { version = "0.19.7", features = ["lexer"] }
[dependencies]
lalrpop-util = { version = "0.19.7", features = ["lexer"] }
regex = "1.5"
log = "0.4.14"
env_logger = "0.9.0"
wasm-bindgen = { version = "0.2", optional = true }
thiserror = "1.0"
logos = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "0.3"
web-sys = "0.3"