-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
63 lines (51 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "wolfram-app-discovery"
version = "0.4.8"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/WolframResearch/wolfram-app-discovery-rs"
description = "Find local installations of the Wolfram Language"
keywords = ["wolfram", "wolfram-language", "discovery", "mathematica", "wolfram-engine"]
categories = ["command-line-utilities", "development-tools", "development-tools::build-utils"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = [
".vscode/*",
]
#===================
# Features
#===================
[features]
default = []
cli = ["clap", "clap-markdown"]
#===================
# Targets
#===================
[[bin]]
name = "wolfram-app-discovery"
required-features = ["cli"]
#===================
# Dependencies
#===================
[dependencies]
log = "0.4.17"
clap = { version = "4.0.29", features = ["derive"], optional = true }
clap-markdown = { version = "0.1.3", optional = true }
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.9.2"
[target.'cfg(target_os = "windows")'.dependencies]
once_cell = "1.9.0"
regex = "1.5.4"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.32.0"
features = [
"alloc",
"Win32_Foundation",
"Win32_System_Registry",
"Win32_System_Threading",
"Win32_System_SystemInformation",
"Win32_System_SystemServices",
"Win32_System_Diagnostics_Debug",
"Win32_Storage_FileSystem",
"Win32_Storage_Packaging_Appx",
]