| 1 | [package] |
| 2 | name = "beer-protocols" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | description = "Terminal protocol codecs and key/mouse wire encoders used by beer" |
| 8 | readme = "README.md" |
| 9 | |
| 10 | [dependencies] |
| 11 | # Provides the keyboard vocabulary (Keysym, Modifiers, KeyEvent) the key |
| 12 | # encoder consumes; the version is kept in lockstep with beer so the types |
| 13 | # unify to a single definition across the workspace. |
| 14 | smithay-client-toolkit = "0.20.0" |
| 15 | |
| 16 | [lints] |
| 17 | workspace = true |