From 908094d91dda480ba0fc79c686820e1bd6815da4 Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Sun, 15 Dec 2024 15:29:55 -0500 Subject: [PATCH] Updated Dependencies Added dependencies into the Cargo.toml file and updated .gitignore to ignore files associated with this project that are secret. --- .gitignore | 10 ++++++++++ Cargo.toml | 9 +++++++++ 2 files changed, 19 insertions(+) create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore index 8147f61..f36f74c 100644 --- a/.gitignore +++ b/.gitignore @@ -449,3 +449,13 @@ FodyWeavers.xsd # Built Visual Studio Code Extensions *.vsix + + +# Added by cargo +/target + +# Ignore the .client-auth file +.client-auth + +# Ignore the config directory as this is used for testing purposes before the executable is moved +config/ diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5ea6599 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "tsdproxy-keygen" +version = "0.1.0" +edition = "2021" + +[dependencies] +http = "1.2.0" +oauth2 = "4.4.2" +serde_json = "1.0.133"