[package] name = "novem" version = "0.1.0" edition = "2021" authors = ["bjornars@novem.no"] license = "MIT" homepage = "https://novem.no" description = "Language bindings for the novem.no data visualization API" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "novem" path = "src/lib/lib.rs" [[bin]] name = "novem-cli" path = "src/main.rs" [dependencies] configparser = { version ="3.0.4"} reqwest = { version = "0.11.24", features = ["json"] } serde = { version = "1.0.197", features = ["derive"] } tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"] }