-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 862 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 862 Bytes
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
[package]
name = "pushd"
version = "0.0.2"
authors = ["Dave Rolsky <autarch@urth.org>"]
description = "A library that implements pushd"
repository = "https://github.com/houseabsolute/pushd"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2021"
[dependencies]
log = "0.4.22"
thiserror = "2.0.5"
[dev-dependencies]
serial_test = "3.2.0"
tempfile = "3.14.0"
[package.metadata.release]
tag-name = "v{{version}}"
# workaround for https://github.com/cross-rs/cross/issues/1345
[package.metadata.cross.target.x86_64-unknown-netbsd]
pre-build = [
"mkdir -p /tmp/netbsd",
"curl https://archive.netbsd.org/pub/NetBSD-archive/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O",
"tar -C /tmp/netbsd -xJf base.tar.xz",
"cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib",
"rm base.tar.xz",
"rm -rf /tmp/netbsd",
]