-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 1.78 KB
/
Cargo.toml
File metadata and controls
60 lines (55 loc) · 1.78 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
[package]
name = "chromaport"
version = "0.10.1"
edition = "2021"
description = "Migrate VS Code / Cursor / OpenCode / iTerm2 themes to Superset, Warp, Ghostty, OpenCode, Obsidian, iTerm2, and more"
license = "MIT"
repository = "https://github.com/hamsurang/chromaport"
homepage = "https://github.com/hamsurang/chromaport"
keywords = ["theme", "vscode", "cursor", "superset", "warp", "ghostty", "iterm2"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "chromaport"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dirs = "5"
# NOTE: inquire 0.7 depends on crossterm 0.25, while ratatui uses crossterm 0.28.
# These two versions coexist safely because inquire prompts complete before the
# ratatui TUI starts, and TerminalGuard defensively resets terminal state.
inquire = "0.7"
libc = "0.2"
rayon = "1"
serde = { version = "1", features = ["derive"] }
serde_yaml_ng = "0.10"
serde_json = "1"
similar = { version = "2", features = ["inline"] }
console = "0.15"
crossterm = "0.28"
tempfile = "3"
ureq = { version = "3", features = ["json"] }
ratatui = "0.29"
plist = "1"
semver = "1"
[dev-dependencies]
assert_cmd = "2"
insta = "1"
predicates = "3"
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'dist'
[workspace.metadata.dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.31.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "hamsurang/homebrew-chromaport"
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]