diff options
| author | WerWolv <werwolv98@gmail.com> | 2022-03-31 08:31:03 +0200 |
|---|---|---|
| committer | WerWolv <werwolv98@gmail.com> | 2022-03-31 08:31:03 +0200 |
| commit | a38e03094b49fdc44389d4a558e55108d6db827a (patch) | |
| tree | 74eb1e11de56d1593d651ed623a959d715e81f30 /Cargo.toml | |
| parent | 807acfa8b464584b76567e9c006a6a4c81589645 (diff) | |
| download | decky-loader-a38e03094b49fdc44389d4a558e55108d6db827a.tar.gz decky-loader-a38e03094b49fdc44389d4a558e55108d6db827a.zip | |
sys: Added initial code injection logic
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..b996bb66 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "steamos_plugin_manager" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tokio = { version = "1", features = ["full"] } +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +tungstenite = "0.17.2" +hyper = { version = "0.14.18", features = [ "full" ] }
\ No newline at end of file |
