1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
name = "kanata-parser"
version = "0.190.0"
authors = ["jtroo <j.andreitabs@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A parser for configuration language of kanata, a keyboard remapper."
homepage = "https://github.com/jtroo/kanata"
readme = "README.md"
keywords = [
"kanata",
"parser",
]
license = "LGPL-3.0-only"
repository = "https://github.com/jtroo/kanata"
[features]
cmd = []
gui = []
interception_driver = []
lsp = []
win_llhook_read_scancodes = []
win_sendinput_send_scancodes = []
zippychord = []
[lib]
name = "kanata_parser"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bitflags]
version = "2.5.0"
[dependencies.bytemuck]
version = "1.15.0"
[dependencies.itertools]
version = ">= 0.12, < 0.15"
[dependencies.kanata-keyberon]
version = "0.190.0"
[dependencies.log]
version = "0.4.8"
default-features = false
[dependencies.miette]
version = "7.4.0"
features = ["fancy"]
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.patricia_tree]
version = "0.9"
[dependencies.rustc-hash]
version = "2"
[dependencies.thiserror]
version = "1.0.38"
[dev-dependencies.simplelog]
version = "0.12.0"
|