| 1 | [package] |
| 2 | name = "fackr" |
| 3 | version = "1.2.1" |
| 4 | edition = "2021" |
| 5 | description = "Terminal text editor" |
| 6 | authors = ["Matthew Forrester Wolffe"] |
| 7 | |
| 8 | [dependencies] |
| 9 | # Terminal |
| 10 | crossterm = { version = "0.28", features = ["libc"] } |
| 11 | |
| 12 | # Text handling |
| 13 | ropey = "1.6" |
| 14 | unicode-segmentation = "1.10" |
| 15 | unicode-width = "0.1" |
| 16 | |
| 17 | # Error handling |
| 18 | thiserror = "1" |
| 19 | anyhow = "1" |
| 20 | |
| 21 | # System clipboard |
| 22 | arboard = "3" |
| 23 | |
| 24 | # Serialization |
| 25 | serde = { version = "1", features = ["derive"] } |
| 26 | serde_json = "1" |
| 27 | |
| 28 | # Regex for search |
| 29 | regex = "1" |
| 30 | |
| 31 | # System directories |
| 32 | dirs = "5" |
| 33 | |
| 34 | # Integrated terminal |
| 35 | portable-pty = "0.8" |
| 36 | vte = "0.13" |
| 37 | |
| 38 | [[bin]] |
| 39 | name = "fackr" |
| 40 | path = "src/main.rs" |
| 41 | |
| 42 | [[bin]] |
| 43 | name = "keytest" |
| 44 | path = "src/bin/keytest.rs" |
| 45 | |
| 46 | [profile.release] |
| 47 | opt-level = 3 |
| 48 | lto = true |