-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (30 loc) · 1.19 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
[package]
name = "r3bl-cmdr"
version = "0.0.5" # remember to update README
readme = "README.md"
edition = "2021"
homepage = "https://r3bl.com"
license = "Apache-2.0"
description = """
WIP: a TUI app suite for developers built in Rust
"""
# TODO: Replace the following commented lines w/ real values
# categories = ["development-tools::procedural-macro-helpers"] # https://doc.rust-lang.org/cargo/reference/manifest.html#the-categories-field
# keywords = ["macros"] # https://doc.rust-lang.org/cargo/reference/manifest.html#the-keywords-field
# TODO: Replace the following lines w/ real values
repository = "https://github.com/r3bl-org/r3bl-cmdr"
authors = ["Nazmul Idris <[email protected]>"]
documentation = "https://developerlife.com/category/Rust/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Logging.
log = "0.4.17"
# Crossterm & EventStream support.
crossterm = { version = "0.24.0", features = ["event-stream"] }
# Async & Tokio.
tokio = { version = "1.20.1", features = ["full"] }
async-trait = "0.1.57"
# Latest r3bl_rs_utils.
r3bl_rs_utils = { version = "0.7.41", path = "../r3bl_rs_utils" }
# Reedline.
reedline = "0.9.0"