diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,11 +1,17 @@ | |||
1 | [package] | 1 | [package] |
2 | name = "xcursorlocate" | 2 | name = "xcursorlocate" |
3 | version = "0.1.0" | 3 | version = "0.1.1" |
4 | authors = ["Akshay <[email protected]>"] | 4 | authors = ["Akshay <[email protected]>"] |
5 | edition = "2018" | 5 | edition = "2018" |
6 | 6 | ||
7 | [dependencies] | ||
8 | confy = "0.3.1" | ||
7 | 9 | ||
8 | [dependencies.xcb] | 10 | [dependencies.xcb] |
9 | version = "0.9" | 11 | version = "0.9" |
10 | features = ["shape"] # NOTE: mapping and unmapping circular windows might be faster | 12 | features = ["shape"] # NOTE: mapping and unmapping circular windows might be faster |
11 | 13 | ||
14 | [dependencies.serde] | ||
15 | version = "1.0.103" | ||
16 | features = ["derive"] | ||
17 | |||