diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | src/structs.rs | 1 |
3 files changed, 3 insertions, 1 deletions
@@ -1,2 +1,3 @@ /target/ **/*.rs.bk +*.lock @@ -1,6 +1,6 @@ [package] name = "podcast" -version = "0.1.2" +version = "0.1.3" authors = ["njaremko <njaremko@gmail.com>"] description = "A command line podcast player" license = "GPL-3.0" diff --git a/src/structs.rs b/src/structs.rs index 7282996..a94c96e 100644 --- a/src/structs.rs +++ b/src/structs.rs @@ -85,6 +85,7 @@ impl Podcast { self.0.title() } + #[allow(dead_code)] pub fn url(&self) -> &str { self.0.link() } |
