diff --git a/.gitignore b/.gitignore index 57de843..3af7d2d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ Cargo.lock /log/rusty_torrent.log /testing /process -/log \ No newline at end of file +/log +.DS_Store \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 11a1d89..e2b8ced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,21 @@ [package] name = "rusty_torrent" -version = "0.4.0" +version = "0.9.2" edition = "2021" +authors = ["Arlo Filley "] +exclude = ["testing/", "process/", ".vscode/"] +license = "MIT" +license-file = "LICENSE" +keywords = ["bittorrent", "torrent", "torrent client"] +readme = "README.md" +repository = "https://github.com/arlofilley/rusty_torrent" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] dns-lookup = "2.0.2" -encoding_rs = "0.8.33" log = "0.4.20" -log4rs = "1.2.0" regex = "1.9.4" reqwest = "0.11.20" serde = { version = "1.0.183", features = ["derive"] } @@ -17,4 +23,4 @@ serde_bencode = "0.2.3" serde_bytes = "0.11.12" sha1 = "0.10.5" simple-logging = "2.0.2" -tokio = { version = "1.30.0", features = ["full"] } +tokio = { version = "1.30.0", features = ["full"] } \ No newline at end of file