diff --git a/Cargo.toml b/Cargo.toml index 7f44221..a074e95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,15 @@ -[workspace] -members = ["vcs-obs-satellite"] -resolver = "2" +[package] +name = "helloworld" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +console-subscriber = "0.3.0" +obws = "0.12.0" +tokio = { version = "1.38.1", features = ["rt-multi-thread"] } +tokio-tungstenite = "0.23.1" +tracing = "0.1.40" +tracing-appender = "0.2.3" +tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] } diff --git a/vcs-obs-satellite/src/main.rs b/src/main.rs similarity index 100% rename from vcs-obs-satellite/src/main.rs rename to src/main.rs diff --git a/vcs-obs-satellite/Cargo.toml b/vcs-obs-satellite/Cargo.toml deleted file mode 100644 index a074e95..0000000 --- a/vcs-obs-satellite/Cargo.toml +++ /dev/null @@ -1,15 +0,0 @@ -[package] -name = "helloworld" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -console-subscriber = "0.3.0" -obws = "0.12.0" -tokio = { version = "1.38.1", features = ["rt-multi-thread"] } -tokio-tungstenite = "0.23.1" -tracing = "0.1.40" -tracing-appender = "0.2.3" -tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] }