-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (45 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
46 lines (45 loc) · 1.28 KB
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
[package]
name = "ratzilla"
version = "0.1.0"
description = "Build terminal-themed web applications with Ratatui and WebAssembly"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/orhun/ratzilla"
repository = "https://github.com/orhun/ratzilla"
keywords = ["tui", "webassembly", "ratatui"]
categories = ["wasm"]
include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md"]
edition = "2021"
[dependencies]
web-sys = { version = "0.3.77", features = [
'console',
'CanvasRenderingContext2d',
'Document',
'Element',
'HtmlCanvasElement',
'HtmlElement',
'KeyboardEvent',
'Location',
'MouseEvent',
'Navigator',
'Node',
'Performance',
'Screen',
'WebGl2RenderingContext',
'WebGlBuffer',
'WebGlProgram',
'WebGlRenderingContext',
'WebGlShader',
'WebGlTexture',
'WebGlUniformLocation',
'WebGlVertexArrayObject',
'Window',
] }
compact_str = "0.9.0"
ratatui = { version = "0.29", default-features = false, features = ["all-widgets"] }
console_error_panic_hook = "0.1.7"
thiserror = "2.0.12"
bitvec = { version = "1.0.1", default-features = false, features = ["alloc", "std"] }
beamterm-renderer = "0.1.1"
unicode-width = "0.2.0"