Extract config into cove-config crate

This commit is contained in:
Joscha 2023-04-20 14:11:32 +02:00
parent 288a5f97dd
commit 5b5370d2df
9 changed files with 37 additions and 15 deletions

11
Cargo.lock generated
View file

@ -249,6 +249,7 @@ dependencies = [
"async-trait",
"clap",
"cookie",
"cove-config",
"crossterm",
"directories",
"edit",
@ -259,19 +260,25 @@ dependencies = [
"open",
"parking_lot",
"rusqlite",
"serde",
"serde_json",
"thiserror",
"time",
"tokio",
"tokio-tungstenite",
"toml",
"toss",
"unicode-segmentation",
"unicode-width",
"vault",
]
[[package]]
name = "cove-config"
version = "0.6.1"
dependencies = [
"serde",
"toml",
]
[[package]]
name = "cpufeatures"
version = "0.2.6"