-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
36 lines (31 loc) · 1018 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
[package]
name = "xterm-js-rs"
version = "0.1.2"
homepage = "https://github.com/segeljakt/xterm-js-rs/"
repository = "https://github.com/segeljakt/xterm-js-rs/"
readme = "README.md"
description = "Rust-WASM bindings for the xterm-js Javascript library"
authors = ["Klas Segeljakt <[email protected]>"]
edition = "2018"
license = "MIT"
keywords = ["cli", "web", "wasm", "javascript"]
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = []
xterm-addon-attach = ["web-sys/WebSocket"]
xterm-addon-fit = []
xterm-addon-ligatures = []
xterm-addon-search = []
xterm-addon-serialize = []
xterm-addon-unicode11 = []
xterm-addon-web-links = []
xterm-addon-webgl = ["web-sys/HtmlCanvasElement"]
[dependencies]
wasm-bindgen = "0.2.62"
js-sys = "0.3.39"
web-sys = { version = "0.3.39", features = ["HtmlElement", "HtmlTextAreaElement", "KeyboardEvent", "MouseEvent"] }
[dev-dependencies]
wasm-bindgen-test = "0.3.12"
[profile.release]
opt-level = "s"