-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 976 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 976 Bytes
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
[package]
name = "iced-pancurses"
version = "0.1.2"
license = "MIT"
authors = ["Olivier Pinon <oliv.pinon@gmail.com>"]
description = "Toy renderer for iced based on pancurses"
homepage = "https://github.com/AlisCode/iced-pancurses"
repository = "https://github.com/AlisCode/iced-pancurses"
edition = "2018"
keywords= ["gui", "iced", "pancurses", "ncurses", "tui"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = { version = "0.3", features = ["thread-pool"] }
iced_core = { git = "https://github.com/hecrj/iced", rev = "8311500ac03a95927022d8eec8178ba7d87b0010", features = ["command", "subscription"] }
iced_native = { git = "https://github.com/hecrj/iced", rev = "8311500ac03a95927022d8eec8178ba7d87b0010" }
pancurses = "0.16.1"
[dev-dependencies]
futures = "0.3"
async-std = { version = "1.3", features = ["unstable"] }
surf = "1.0"
serde = { version = "1.0", features = ["derive"] }
rand = "0.7"