# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [package] name = "rin" version = "0.1.0" authors = ["Fuwn "] edition = "2021" description = "Access due.moe/schedule from your terminal" readme = "README.md" homepage = "https://github.com/Fuwn/rin" repository = "https://github.com/Fuwn/rin" license = "GPL-3.0-only" keywords = ["rust", "anime"] categories = ["web-programming"] # Slower builds, faster executables [profile.release] lto = "fat" codegen-units = 1 opt-level = 3 [dependencies] # Automated Web Scraping thirtyfour = "0.31.0" # Asyncronous Runtime tokio = { version = "1.35.1", features = ["full"] } # HTML & Markdown html2md = "0.2.14" mdcat = "2.1.0" # Serialisation & JSON serde_json = "1.0.111" serde = { version = "1.0.111", features = ["derive"] } # Time chrono = "0.4.31" # Networking port_scanner = "0.1.5"