-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 913 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "interm"
authors = ["Dimitrios Pouris <jimpouris0@gmail.com>"]
version = "0.1.1"
edition = "2021"
license = "MIT"
license-file = "LICENSE"
description = "InTerm is a library for creating interactive terminal applications."
homepage = "https://github.com/dpouris/interm"
documentation = "https://docs.rs/interm"
repository = "https://github.com/dpouris/interm"
readme = "README.md"
keywords = [
"terminal",
"cli",
"tui",
"user-interface",
"terminal-graphics",
]
categories = [
"terminal",
"command-line-utilities",
"user-interfaces",
"development-tools",
]
exclude = [
"examples/*",
]
[lib]
name = "interm"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
rand = "0.8.5"
tokio = { version = "^1.32", features = ["rt", "macros", "sync", "time", "rt-multi-thread"] }
[[example]]
name = "download_sync"
path = "examples/download_sync.rs"