| 1 | [package] |
| 2 | name = "fackr" |
| 3 | version = "0.6.0" |
| 4 | edition = "2021" |
| 5 | description = "Terminal text editor" |
| 6 | authors = ["Matthew Forrester Wolffe"] |
| 7 | |
| 8 | [dependencies] |
| 9 | # Terminal |
| 10 | crossterm = "0.28" |
| 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 | # System directories |
| 29 | dirs = "5" |
| 30 | |
| 31 | [[bin]] |
| 32 | name = "fackr" |
| 33 | path = "src/main.rs" |
| 34 | |
| 35 | [[bin]] |
| 36 | name = "fac" |
| 37 | path = "src/main.rs" |
| 38 | |
| 39 | [profile.release] |
| 40 | opt-level = 3 |
| 41 | lto = true |