-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (60 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
75 lines (60 loc) · 1.5 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "velog-cli"
version = "0.3.3"
edition = "2021"
license = "MIT"
description = "Command-line interface for velog.io"
repository = "https://github.com/hamsurang/velog-cli"
homepage = "https://github.com/hamsurang/velog-cli"
keywords = ["velog", "blog", "cli", "markdown"]
categories = ["command-line-utilities"]
readme = "README.md"
[[bin]]
name = "velog"
path = "src/main.rs"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
# Async (minimal features for CLI)
tokio = { version = "1", features = ["rt", "macros"] }
# HTTP (explicit TLS backend, no system openssl dependency)
reqwest = { version = "0.12", default-features = false, features = [
"json", "rustls-tls"
] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
anyhow = "1"
# Directories
dirs = "5"
# Terminal output
comfy-table = "7"
colored = "2"
termimad = "0.30"
# Input
rpassword = "7"
# Slug generation (Korean → romanized ASCII via deunicode)
slug = "0.1"
# JWT payload decoding
base64 = "0.22"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.dist]
cargo-dist-version = "0.31.0"
ci = "github"
installers = ["homebrew"]
tap = "hamsurang/homebrew-velog-cli"
publish-jobs = ["homebrew"]
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
allow-dirty = ["ci"]