29 lines
1,013 B
TOML
29 lines
1,013 B
TOML
# This file is part of Deja-vu.
|
|
#
|
|
# Deja-vu is free software: you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Deja-vu is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Deja-vu. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
[package]
|
|
name = "pe-menu"
|
|
version = "0.1.0"
|
|
authors = ["2Shirt <2xShirt@gmail.com>"]
|
|
license = "GPL"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
crossterm = { version = "0.27.0", features = ["event-stream"] }
|
|
futures = "0.3.30"
|
|
ratatui = "0.26.0"
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
toml = "0.8.13"
|