Added the scaffolding
This commit is contained in:
41
Cargo.toml
Normal file
41
Cargo.toml
Normal file
@@ -0,0 +1,41 @@
|
||||
[workspace]
|
||||
members = [
|
||||
"shanty-db",
|
||||
"shanty-index",
|
||||
"shanty-tag",
|
||||
"shanty-org",
|
||||
"shanty-watch",
|
||||
"shanty-dl",
|
||||
"shanty-search",
|
||||
"shanty-notify",
|
||||
"shanty-playlist",
|
||||
"shanty-serve",
|
||||
"shanty-play",
|
||||
"shanty-web",
|
||||
]
|
||||
resolver = "3"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
repository = "https://git.squid-inc.dev/connor/shanty"
|
||||
|
||||
[workspace.dependencies]
|
||||
# Async runtime
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
||||
# Serialization
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
# CLI
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
|
||||
# Error handling
|
||||
thiserror = "2"
|
||||
anyhow = "1"
|
||||
|
||||
# Logging
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
Reference in New Issue
Block a user