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"