-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (25 loc) · 845 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
[package]
name = "ratatui-xterm-js"
version = "0.1.0"
edition = "2021"
[workspace]
members = [".", "./examples/*"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
ratatui = "0.28"
tokio = { version = "1.32.0", default-features = false, features = ["sync"] }
crossterm = "0.28.1"
futures = "0.3.28"
terminput = { git = "https://github.com/aschey/terminput", rev = "0eeca408b9eadf5dca616a8473454488877ecf3e", features = [
"crossterm",
] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "0.3.64"
wasm-bindgen = "0.2.87"
web-sys = "0.3.64"
xterm-js-rs = { git = "https://github.com/aschey/xterm-js-rs", rev = "d97c6ab43c012068514413261024e782ea866fae", features = [
"xterm-addon-fit",
] }
[patch.crates-io]
crossterm = { git = "https://github.com/aschey/crossterm", rev = "524c4c819f025ffd1b203a8404100ec8ede046c0" }