-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
[package]
name = "prototool"
description = "Tool zum automatischen generieren von Protokollen und Website Posts"
version = "4.0.0"
edition = "2021"
[lib]
name = "prototool"
path = "src/lib.rs"
[[bin]]
name = "prototool"
path = "src/cli/prototool.rs"
[dependencies]
anyhow = "1"
arboard = {version = "3", features = ["windows-sys", "wayland-data-control"], default-features = false }
askama = "0"
chrono = { version = "0", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
inquire = { version = "0", default-features = false, features = ["crossterm"] }
markdown = "=1.0.0-alpha.21"
opener = "0"
reqwest = { version = "0", features = ["blocking", "json", "rustls-tls", "http2", "macos-system-configuration", "charset"], default-features = false }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0"
strum = { version = "0", features = ["derive"] }
toml = { version = "0", features = ["parse"], default-features = false }
url = "2"
uuid = { version = "1", features = ["v4", "serde"] }
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0"
rustix = { version = "0", features = ["stdio"], default-features = false }
[dev-dependencies]
pretty_assertions = "1"
tempfile = "3"