ki18n-rs/Cargo.toml
Ayush Singh c831f48002 Fixed Bug in init_from_engine.
Earlier it was registering the KLocalizedContextHolder with a different
KLocalizedContext than the context object.
2022-01-24 12:21:00 +05:30

35 lines
781 B
TOML

[package]
name = "ki18n"
description = "A crate to use KF5I18n from rust."
author = ["Ayush Singh <ayushdevel1325@gmail.com>"]
version = "2.0.0"
edition = "2021"
links = "KF5I18n"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Ayush1325/ki18n-rs"
keywords = ["KDE", "kde", "localization"]
categories = ["api-bindings", "external-ffi-bindings", "localization"]
build = "build.rs"
[dependencies]
cpp = "0.5"
qmetaobject = { version = "0.2", optional = true }
qttypes = "0.2"
[build-dependencies]
cpp_build = "0.5"
semver = "1.0"
kde_frameworks = "0.1"
[dev-dependencies]
lazy_static = "1.4"
cstr = "0.2"
[package.metadata.docs.rs]
dependencies = ["qtbase5-dev", "qtdeclarative5-dev", "libkf5i18n-dev"]
all-features = true
[features]
all = ["qmetaobject"]