-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (60 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
71 lines (60 loc) · 1.97 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
[package]
name = "verilib-cli"
version = "0.2.1"
edition = "2021"
description = "A command-line tool for managing Verilib repositories and API interactions"
homepage = "https://github.com/Beneficial-AI-Foundation/verilib-cli"
repository = "https://github.com/Beneficial-AI-Foundation/verilib-cli"
license = "MIT"
keywords = ["cli", "verilib", "api", "repository"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
anyhow = "1.0"
tokio = { version = "1.0", features = ["full"] }
rpassword = "7.3"
whoami = "1.6.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dialoguer = "0.11"
regex = "1.x"
dirs = "5.0"
sha2 = "0.10.9"
ratatui = "0.29.0"
crossterm = "0.29.0"
walkdir = "2.5.0"
# Dependencies for structure commands (merged from verilib-structure)
serde_yaml = "0.9"
percent-encoding = "2"
glob = "0.3"
chrono = { version = "0.4", features = ["serde"] }
csv = "1"
intervaltree = "0.2"
which = "8"
toml = "0.8"
semver = "1"
[target.'cfg(unix)'.dependencies]
users = "0.11.0"
# Platform-specific keyring dependencies to avoid cross-compilation issues
[target.'cfg(target_os = "macos")'.dependencies]
keyring = { version = "3.0", features = ["apple-native"] }
[target.'cfg(target_os = "windows")'.dependencies]
keyring = { version = "3.0", features = ["windows-native"] }
[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
keyring = { version = "3.0", features = ["sync-secret-service"] }
# For non-x86_64 Linux targets, use basic keyring without dbus
[target.'cfg(all(target_os = "linux", not(target_arch = "x86_64")))'.dependencies]
keyring = { version = "3.0" }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[[bin]]
name = "mock-probe-verus"
path = "tests/helpers/mock_probe_verus.rs"
test = false
doc = false
bench = false
[dev-dependencies]
tempfile = "3.24.0"