-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
74 lines (49 loc) · 1.71 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
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 = "xterm-js-sys"
version = "4.6.0-alpha1"
authors = ["Rahul Butani <r.r.butan.i+crates@gmail.com>"]
edition = "2018"
description = "Rust WebAssembly bindings for xterm.js."
homepage = "https://github.com/rrbutani/xterm-js-sys"
repository = "https://github.com/rrbutani/xterm-js-sys"
readme = "README.md"
keywords = ["xterm", "xtermjs", "tui-web", "tui", "terminal"]
categories = ["api-bindings", "command-line-interface", "external-ffi-bindings", "wasm", "web-programming"]
license = "MIT"
exclude = [".github"]
autoexamples = false
[badges]
github-actions = { repository = "rrbutani/xterm-js-sys", workflow = "full" }
# [TODO] # codecov = { repository = "rrbutani/xterm-js-sys", branch = "main", service = "github" }
is-it-maintained-issue-resolution = { repository = "rrbutani/xterm-js-sys" }
is-it-maintained-open-issues = { repository = "rrbutani/xterm-js-sys" }
maintenance = { status = "actively-developed" }
[lib]
[dependencies]
js-sys = "0.3.37"
wasm-bindgen = { version = "0.2.63", features = ["strict-macro"] }
log = { version = "0.4", optional = true }
[dependencies.web-sys]
version = "0.3.37"
features = [
"Element",
"HtmlTextAreaElement",
"KeyboardEvent",
"MouseEvent",
]
[dev-dependencies]
wasm-bindgen-test = "0.3.13"
[profile.release]
opt-level = 3
lto = true
[features]
default = ["ext"]
crossterm-support = []
ext = ["log"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown", "wasm32-wasi"]
rustdoc-args = ["--cfg", "docs"]
all-features = true
default-target = "wasm32-unknown-unknown"
[patch.crates-io]
wasm-bindgen = { git = "https://github.com/rrbutani/wasm-bindgen.git", branch = "patches" } # TODO: switch back once things get merged!