GrammalecteClient/Cargo.toml

31 lines
972 B
TOML
Raw Normal View History

2022-12-17 16:37:33 +00:00
[package]
name = "grammalecte_client"
2023-05-23 12:50:44 +00:00
version = "0.1.4"
2022-12-17 16:37:33 +00:00
edition = "2021"
authors = ["Pierre Hubert <pierre.git@communiquons.org>"]
description = "Grammalecte HTTP client"
license = "MIT"
2022-12-19 11:34:18 +00:00
repository = "https://gitea.communiquons.org/pierre/GrammalecteClient"
keywords = ["grammalecte", "spell-check"]
2022-12-20 09:18:19 +00:00
readme = "README.md"
categories = ["text-processing"]
2022-12-17 16:37:33 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-23 12:41:19 +00:00
serde_json = "1.0.96"
reqwest = { version = "0.11.18", features = ["json"] }
serde = { version = "1.0.163", features = ["derive"] }
2022-12-18 16:49:19 +00:00
log = "0.4.17"
2022-12-19 11:20:44 +00:00
zip = { version = "0.6.3", optional = true }
mktemp = { version = "0.5.0", optional = true }
rand = { version = "0.8.5", optional = true }
port_scanner = {version = "0.1.5", optional = true}
[features]
embedded-server = ["zip", "mktemp", "rand", "port_scanner"]
2022-12-18 16:49:19 +00:00
[dev-dependencies]
env_logger = "0.10.0"
2023-05-23 12:41:19 +00:00
tokio = { version = "1.28.1", features = ["full"] }