-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 766 Bytes
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
[package]
name = "xshot"
version = "0.1.0"
edition = "2021"
readme = "README.md"
rust-version = "1.70"
repository = "https://github.com/hydrobeam/org-rust"
license = "MIT"
keywords = ["screenshot", "screen-shot", "X", "X11"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.12", features = ["derive"] }
image = "0.24.6"
# ATM the latest version has a memory alignment issue (#230), use latest commit from main
xcb = { git = "https://github.com/rust-x-bindings/rust-xcb.git", rev = "5657d69" }
[build-dependencies]
clap = { version = "4.3.12", features=["derive"]}
clap_complete = "4.3.2"
clap_mangen = "0.2.12"
# janky
image = "0.24.6"