22 lines
616 B
TOML
22 lines
616 B
TOML
[package]
|
|
name = "owlry-plugin-converter"
|
|
version = "1.0.1"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Unit and currency conversion plugin for owlry"
|
|
keywords = ["owlry", "plugin", "converter", "units", "currency"]
|
|
categories = ["science"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
owlry-plugin-api = { git = "https://somegit.dev/Owlibou/owlry.git", tag = "plugin-api-v1.0.0" }
|
|
abi_stable = "0.11"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.13", features = ["blocking"] }
|
|
dirs = "5"
|