diff options
| author | Arne Dußin | 2020-11-03 23:41:08 +0100 |
|---|---|---|
| committer | Arne Dußin | 2020-11-03 23:41:08 +0100 |
| commit | f6d06f6123ec6fce5814ee803e0b85052922ad47 (patch) | |
| tree | 5bc6b9ad4de24600efa4f8588d6d9dc2f511c02e /Cargo.lock | |
| parent | b5603648a4c88585764ac70db9614504b9b57515 (diff) | |
| download | graf_karto-f6d06f6123ec6fce5814ee803e0b85052922ad47.tar.gz graf_karto-f6d06f6123ec6fce5814ee803e0b85052922ad47.zip | |
Add (very) basic path-drawing
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -69,6 +69,12 @@ dependencies = [ ] [[package]] +name = "float-cmp" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75224bec9bfe1a65e2d34132933f2de7fe79900c96a0174307554244ece8150e" + +[[package]] name = "fs_extra" version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -105,6 +111,8 @@ dependencies = [ "raylib", "ron", "serde", + "svgtypes", + "xmltree", ] [[package]] @@ -355,6 +363,22 @@ dependencies = [ ] [[package]] +name = "siphasher" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" + +[[package]] +name = "svgtypes" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c536faaff1a10837cfe373142583f6e27d81e96beba339147e77b67c9f260ff" +dependencies = [ + "float-cmp", + "siphasher", +] + +[[package]] name = "syn" version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -388,3 +412,18 @@ name = "wasi" version = "0.9.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "xml-rs" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a" + +[[package]] +name = "xmltree" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f76badaccb0313f1f0cb6582c2973f2dd0620f9652eb7a5ff6ced0cc3ac922b3" +dependencies = [ + "xml-rs", +] |
