Dissolve workspace
This commit is contained in:
parent
1cc7dd8920
commit
e601476d02
29 changed files with 24 additions and 29 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -127,7 +127,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
||||
|
||||
[[package]]
|
||||
name = "cove-tui"
|
||||
name = "cove"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
|
|
|
|||
27
Cargo.toml
27
Cargo.toml
|
|
@ -1,5 +1,24 @@
|
|||
[workspace]
|
||||
[package]
|
||||
name = "cove"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
members = [
|
||||
"cove-tui",
|
||||
]
|
||||
[dependencies]
|
||||
anyhow = "1.0.57"
|
||||
async-trait = "0.1.56"
|
||||
chrono = { version = "0.4.19", features = ["serde"] }
|
||||
crossterm = "0.23.2"
|
||||
directories = "4.0.1"
|
||||
edit = "0.1.4"
|
||||
futures = "0.3.21"
|
||||
parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
rusqlite = { version = "0.27.0", features = ["chrono"] }
|
||||
serde = { version = "1.0.137", features = ["derive"] }
|
||||
serde_json = "1.0.81"
|
||||
thiserror = "1.0.31"
|
||||
tokio = { version = "1.19.2", features = ["full"] }
|
||||
tokio-tungstenite = { version = "0.17.1", features = [
|
||||
"rustls-tls-native-roots",
|
||||
] }
|
||||
toss = { git = "https://github.com/Garmelon/toss.git", rev = "761519c1a7cdc950eab70fd6539c71bf22919a50" }
|
||||
|
|
|
|||
|
|
@ -1,24 +0,0 @@
|
|||
[package]
|
||||
name = "cove-tui"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.57"
|
||||
async-trait = "0.1.56"
|
||||
chrono = { version = "0.4.19", features = ["serde"] }
|
||||
crossterm = "0.23.2"
|
||||
directories = "4.0.1"
|
||||
edit = "0.1.4"
|
||||
futures = "0.3.21"
|
||||
parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
rusqlite = { version = "0.27.0", features = ["chrono"] }
|
||||
serde = { version = "1.0.137", features = ["derive"] }
|
||||
serde_json = "1.0.81"
|
||||
thiserror = "1.0.31"
|
||||
tokio = { version = "1.19.2", features = ["full"] }
|
||||
tokio-tungstenite = { version = "0.17.1", features = [
|
||||
"rustls-tls-native-roots",
|
||||
] }
|
||||
toss = { git = "https://github.com/Garmelon/toss.git", rev = "761519c1a7cdc950eab70fd6539c71bf22919a50" }
|
||||
Loading…
Add table
Add a link
Reference in a new issue