-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (36 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
[package]
name = "ts-bindgen-web"
version = "0.6.0-pre"
description = "Web interface for generating wasm-bindgen bindings from typescript definitions"
authors = ["Adam Berger <adam@ratchetdesigns.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
publish = false
repository = "https://github.com/ratchetdesigns/ts-bindgen"
readme = "README.md"
keywords = ["wasm", "bindings", "typescript", "wasm-bindgen", "javascript"]
categories = ["compilers", "command-line-utilities", "development-tools::ffi", "wasm", "web-programming"]
[workspace]
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
lto = true
opt-level = "s"
[dependencies]
wasm-bindgen = "0.2.87"
yew = "0.19.3"
ts-bindgen = { version = "0.6.0-pre", path = "../ts-bindgen", default-features = false }
js-sys = "0.3.64"
web-sys = { version = "0.3.64", features = ["Window"] }
[dependencies.monaco]
version = "0.3.0"
default-features = false
features = ["yew-components"]
git = "https://github.com/siku2/rust-monaco"
rev = "cb20108c317976ba8c3d05b581a84efd394c3dbe"
[dependencies.rustfmt]
package = "rustfmt-nightly"
git = "https://github.com/ratchetdesigns/rustfmt"
branch = "nightly-2023-10-29"
[dev-dependencies]
wasm-bindgen-test = "0.3.37"