aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJonas Maier <>2026-03-10 15:00:44 +0100
committerJonas Maier <>2026-03-10 15:00:44 +0100
commit83e5044fd6e5c2a8bccd29f5a8462e7016823aed (patch)
tree3b07230cc7f373bf49a4d78b61e1635be87bfc93 /Cargo.lock
parent956e67aafd0ca9bf49782e308644590406d11989 (diff)
downloadpish-83e5044fd6e5c2a8bccd29f5a8462e7016823aed.tar.gz
defer macro
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1c8a615..5a64a8f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,6 +3,12 @@
version = 4
[[package]]
+name = "bitflags"
+version = "2.11.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
+
+[[package]]
name = "cc"
version = "1.2.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -13,6 +19,18 @@ dependencies = [
]
[[package]]
+name = "cfg-if"
+version = "1.0.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
+
+[[package]]
+name = "cfg_aliases"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
+
+[[package]]
name = "find-msvc-tools"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -25,10 +43,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
[[package]]
+name = "nix"
+version = "0.31.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
+dependencies = [
+ "bitflags",
+ "cfg-if",
+ "cfg_aliases",
+ "libc",
+]
+
+[[package]]
name = "pish"
version = "0.3.0"
dependencies = [
"libc",
+ "nix",
"pish_derive",
"sqlite",
"termios",