-
-
Notifications
You must be signed in to change notification settings - Fork 402
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 934 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (36 loc) · 934 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "x"
version = "6.0.0"
edition = "2024"
description = "Command-line interface for the X API"
license = "MIT"
[lib]
name = "x"
path = "src/lib.rs"
[[bin]]
name = "x"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6.0", features = ["string"] }
chrono = { version = "0.4.45", default-features = true, features = ["clock"] }
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
serde_urlencoded = "0.7.1"
serde_yaml_ng = "0.10"
thiserror = "2.0.18"
base64 = "0.22.1"
dirs = "6.0.0"
reqwest = { version = "0.13.4", features = ["blocking"] }
x-api = { path = "x-api" }
[dev-dependencies]
clap_mangen = "0.3"
assert_cmd = "2.2.2"
predicates = "3.1.4"
tempfile = "3.27.0"
[package.metadata.release]
publish = false
push-remote = "origin"
tag-name = "v{{version}}"
tag-message = "Release {{tag_name}}"
pre-release-hook = ["git", "fetch", "--tags", "--quiet", "origin"]