-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (25 loc) · 827 Bytes
/
Cargo.toml
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
26
27
28
29
30
31
32
[package]
name = "flameshot-rs"
version = "1.0.1"
edition = "2021"
authors = ["kr1s7ian"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/kr1s7ian/flameshot-rs"
description = "Easily integrate flameshot in your project, optionally using the image crate features."
[lib]
name = "flameshot"
path = "src/flameshot.rs"
[[example]]
name = "save-full-screenshot"
path = "examples/save_full_screenshot.rs"
[[example]]
name = "save-gui-screenshot"
path = "examples/save_gui_screenshot.rs"
[[example]]
name = "to-dynamic-image"
path = "examples/to_dynamic_image.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.157", optional = true, features = ["derive"] }
image = { version = "0.24.5", optional = true }