-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (28 loc) · 871 Bytes
/
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
[package]
name = "flow-cli"
version = "0.1.1"
edition = "2021"
authors = ["Dreck Sallow <[email protected]>"]
license = "MIT"
description = "Flow is a useful cli tool to better manage tasks and projects"
readme = "README.md"
repository = "https://github.com/DreckSallow/flow"
keywords = ["cli", "command-line", "tool"]
categories = ["command-line-utilities"]
[[bin]]
name = "flow"
path = "./src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.1.4", features = ["derive"] }
clap_complete = "4.1.2"
crossterm = "0.26.0"
thiserror = "1.0"
flow_api = { path = "./flow_api" }
flow_data = { path = "./flow_data" }
[workspace]
members = ["flow_api", "flow_data"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"