summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-02-27 20:42:10 -0500
committerFreya Murphy <freya@freyacat.org>2024-02-27 20:42:10 -0500
commit508c4fa1b89ee31ca8b005bf146301c14afa7779 (patch)
tree7685f1b624cd2159ce415a0e8d4d262c81799dac /Cargo.lock
parentsort n rand (diff)
downloadmatrix-508c4fa1b89ee31ca8b005bf146301c14afa7779.tar.gz
matrix-508c4fa1b89ee31ca8b005bf146301c14afa7779.tar.bz2
matrix-508c4fa1b89ee31ca8b005bf146301c14afa7779.zip
more mat, sys, and os stdlib functions, better matrix printing, other fixes
Diffstat (limited to '')
-rw-r--r--Cargo.lock32
1 files changed, 32 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a59e6f1..9a015a1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -262,6 +262,7 @@ dependencies = [
"anyhow",
"matrix",
"matrix-macros",
+ "os_info",
"rand",
]
@@ -342,6 +343,17 @@ dependencies = [
]
[[package]]
+name = "os_info"
+version = "3.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e"
+dependencies = [
+ "log",
+ "serde",
+ "winapi",
+]
+
+[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -482,6 +494,26 @@ dependencies = [
]
[[package]]
+name = "serde"
+version = "1.0.197"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
+version = "1.0.197"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.48",
+]
+
+[[package]]
name = "smallvec"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"