diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml index 888e79d..4f35424 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,11 +10,7 @@ [workspace] resolver = "2" -members = [ - "crates/bytes", - "crates/yt_dlp", - "yt", -] +members = ["crates/bytes", "crates/yt_dlp", "yt"] [workspace.package] edition = "2021" @@ -36,7 +32,13 @@ log = "0.4.22" serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" url = { version = "2.5.2", features = ["serde"] } -tokio = { version = "1.40.0", features = [ "rt-multi-thread", "macros", "process", "time", "io-std", ] } +tokio = { version = "1.40.0", features = [ + "rt-multi-thread", + "macros", + "process", + "time", + "io-std", +] } [profile.profiling] inherits = "release" |