ki18n-rs/Cargo.toml

35 lines
781 B
TOML
Raw Permalink Normal View History

2021-11-01 09:31:02 +00:00
[package]
name = "ki18n"
description = "A crate to use KF5I18n from rust."
author = ["Ayush Singh <ayushdevel1325@gmail.com>"]
version = "1.2.0"
edition = "2021"
2021-11-01 09:31:02 +00:00
links = "KF5I18n"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Ayush1325/ki18n-rs"
2021-12-23 12:10:39 +00:00
keywords = ["KDE", "kde", "localization"]
2021-12-23 12:22:05 +00:00
categories = ["api-bindings", "external-ffi-bindings", "localization"]
2021-11-13 03:26:39 +00:00
build = "build.rs"
2021-11-01 09:31:02 +00:00
[dependencies]
cpp = "0.5"
2021-12-23 12:05:16 +00:00
qmetaobject = { version = "0.2", optional = true }
qttypes = "0.2"
2021-11-01 09:31:02 +00:00
[build-dependencies]
cpp_build = "0.5"
2021-11-01 09:31:02 +00:00
semver = "1.0"
2022-01-03 19:14:27 +00:00
kde_frameworks = "0.1"
2021-11-13 03:26:39 +00:00
[dev-dependencies]
lazy_static = "1.4"
2022-01-04 13:58:00 +00:00
cstr = "0.2"
2021-11-13 03:26:39 +00:00
[package.metadata.docs.rs]
2021-12-23 12:05:16 +00:00
dependencies = ["qtbase5-dev", "qtdeclarative5-dev", "libkf5i18n-dev"]
all-features = true
[features]
all = ["qmetaobject"]