[package] name = "land-calc" license = "MIT" description = "This app reads a list of mtg cards from 'list.txt', searches scryfall.com to validate them, and figures out how many lands you need." categories = ["mathematics"] keywords = ["magic", "MTG", "cards", "calculator", "lands"] readme = "README.md" version = "0.1.1" authors = ["Pyro "] repository = "https://github.com/MoistPyro/land-calc" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] slint = "1.3.2" tokio = { version = "1.35.1", features = ["full"] } uuid = { version = "1.6.1", features = ["serde"] } serde = { version = "1.0.195", features = ["derive"] } serde_json = "1.0.111" reqwest = { version = "0.11.23", features = ["json"] } futures = "0.3.30" [build-dependencies] slint-build = "1.3.0"