-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.08 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
40
41
42
43
[package]
name = "neocities-deploy"
description = "A command-line tool for deploying your Neocities site"
version = "0.1.15"
license = "GPL-3.0"
authors = ["André Kugland <[email protected]>"]
homepage = "https://github.com/kugland/neocities-deploy"
repository = "https://github.com/kugland/neocities-deploy"
edition = "2021"
resolver = "2"
rust-version = "1.74.1"
[dependencies]
anyhow = "1.0.82"
bytesize = "1.3.0"
clap = { version = "4.5.27", features = ["derive"] }
directories = "6.0.0"
ignore = "0.4.22"
indexmap = { version = "2.2.6", features = ["serde"] }
inquire = "0.7.4"
itertools = "0.14.0"
log = "0.4.21"
neocities-client = "0.1.15"
parse-display = { version = "0.9.1", default-features = false }
pretty_env_logger = "0.5.0"
serde = { version = "1.0.200", features = ["derive"] }
sha1 = "0.10.6"
toml = { version = "0.8.12", features = ["preserve_order"] }
url = "2.5.0"
[dev-dependencies]
assert_cmd = "2.0.14"
indoc = "2.0.4"
mockito = "1.4.0"
predicates = "3.1.0"
serial_test = "3.0.0"
tempfile = "3.10.1"
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
opt-level = "z"