summaryrefslogtreecommitdiff
path: root/.cargo/config.toml
blob: c47adef5bef2ca0945f3ac553236924ce0c56442 (plain)
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
[build]
target-dir = "./.temp/target/"

[alias]
pub = "run --manifest-path crates/build_helper/Cargo.toml --bin exporter"

[publish]
target-dir = "./.temp/publish/"
binaries = [
    "jv",
    "jv.exe",

    "jvv",
    "jvv.exe",
]

[copies.completion_jv]
from = "scripts/completion_jv.sh"
to = "completion_jv.sh"

[copies.completion_jvv]
from = "scripts/completion_jvv.sh"
to = "completion_jvv.sh"

[copies.entry]
from = "scripts/cli.sh"
to = "cli.sh"