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