[package] name = "mikrotik_lite" version = "0.1.0" edition = "2021" authors = ["Mykola Khodorovskyi "] categories = ["Software", "Networking", "API", "Mikrotik"] keywords = ["mikrotik", "routeros", "api", "networking", "router"] license-file = "LICENSE.txt" description = "mikrotik_lite is a simple and efficient library for working with the Mikrotik RouterOS API." readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] log = "0.4.20" serde = "1.0.188" serde_json = "1.0.107" tokio = { version = "1.33.0", features = ["rt","time"] } [dev-dependencies] serde-aux = "4.2.0" tokio = { version = "1.33.0", features = ["rt", "rt-multi-thread", "macros", "time"] } [profile.release] lto = true codegen-units = 1 panic = "abort"