diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Cargo.lock | 51 | ||||
-rw-r--r-- | Cargo.toml | 1 |
3 files changed, 53 insertions, 0 deletions
@@ -1 +1,2 @@ | |||
1 | /target | 1 | /target |
2 | *.obi | ||
@@ -7,12 +7,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
7 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" | 7 | checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" |
8 | 8 | ||
9 | [[package]] | 9 | [[package]] |
10 | name = "bitvec" | ||
11 | version = "0.21.1" | ||
12 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
13 | checksum = "d23f76a953a42e113af6b4f3481ca32ff0a1ddbdcaa714a2333c956807b74a5f" | ||
14 | dependencies = [ | ||
15 | "funty", | ||
16 | "radium", | ||
17 | "tap", | ||
18 | "wyz", | ||
19 | ] | ||
20 | |||
21 | [[package]] | ||
22 | name = "byteorder" | ||
23 | version = "1.4.3" | ||
24 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
25 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" | ||
26 | |||
27 | [[package]] | ||
10 | name = "cfg-if" | 28 | name = "cfg-if" |
11 | version = "0.1.10" | 29 | version = "0.1.10" |
12 | source = "registry+https://github.com/rust-lang/crates.io-index" | 30 | source = "registry+https://github.com/rust-lang/crates.io-index" |
13 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" | 31 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" |
14 | 32 | ||
15 | [[package]] | 33 | [[package]] |
34 | name = "funty" | ||
35 | version = "1.2.0" | ||
36 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
37 | checksum = "1847abb9cb65d566acd5942e94aea9c8f547ad02c98e1649326fc0e8910b8b1e" | ||
38 | |||
39 | [[package]] | ||
16 | name = "lazy_static" | 40 | name = "lazy_static" |
17 | version = "1.4.0" | 41 | version = "1.4.0" |
18 | source = "registry+https://github.com/rust-lang/crates.io-index" | 42 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -25,9 +49,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
25 | checksum = "03b07a082330a35e43f63177cc01689da34fbffa0105e1246cf0311472cac73a" | 49 | checksum = "03b07a082330a35e43f63177cc01689da34fbffa0105e1246cf0311472cac73a" |
26 | 50 | ||
27 | [[package]] | 51 | [[package]] |
52 | name = "obi" | ||
53 | version = "0.1.0" | ||
54 | dependencies = [ | ||
55 | "bitvec", | ||
56 | "byteorder", | ||
57 | ] | ||
58 | |||
59 | [[package]] | ||
60 | name = "radium" | ||
61 | version = "0.6.2" | ||
62 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
63 | checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb" | ||
64 | |||
65 | [[package]] | ||
28 | name = "sdl-tests" | 66 | name = "sdl-tests" |
29 | version = "0.1.0" | 67 | version = "0.1.0" |
30 | dependencies = [ | 68 | dependencies = [ |
69 | "obi", | ||
31 | "sdl2", | 70 | "sdl2", |
32 | ] | 71 | ] |
33 | 72 | ||
@@ -55,7 +94,19 @@ dependencies = [ | |||
55 | ] | 94 | ] |
56 | 95 | ||
57 | [[package]] | 96 | [[package]] |
97 | name = "tap" | ||
98 | version = "1.0.1" | ||
99 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
100 | checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" | ||
101 | |||
102 | [[package]] | ||
58 | name = "version-compare" | 103 | name = "version-compare" |
59 | version = "0.0.10" | 104 | version = "0.0.10" |
60 | source = "registry+https://github.com/rust-lang/crates.io-index" | 105 | source = "registry+https://github.com/rust-lang/crates.io-index" |
61 | checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1" | 106 | checksum = "d63556a25bae6ea31b52e640d7c41d1ab27faba4ccb600013837a3d0b3994ca1" |
107 | |||
108 | [[package]] | ||
109 | name = "wyz" | ||
110 | version = "0.2.0" | ||
111 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
112 | checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" | ||
@@ -8,3 +8,4 @@ edition = "2018" | |||
8 | 8 | ||
9 | [dependencies] | 9 | [dependencies] |
10 | sdl2 = {version = "0.34", features = ["ttf"]} | 10 | sdl2 = {version = "0.34", features = ["ttf"]} |
11 | obi = { path = "../obi" } | ||