Remove unused dependency

This commit is contained in:
Hanno Braun 2022-02-19 11:48:26 +01:00
parent 1677ca2549
commit 875eb4a615
2 changed files with 6 additions and 40 deletions

45
Cargo.lock generated
View File

@ -50,15 +50,6 @@ version = "1.0.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0"
[[package]]
name = "approx"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
dependencies = [
"num-traits",
]
[[package]]
name = "approx"
version = "0.5.1"
@ -478,18 +469,6 @@ dependencies = [
"syn",
]
[[package]]
name = "decorum"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "281759d3c8a14f5c3f0c49363be56810fcd7f910422f97f2db850c2920fde5cf"
dependencies = [
"approx 0.3.2",
"num-traits",
"serde",
"serde_derive",
]
[[package]]
name = "dispatch"
version = "0.2.0"
@ -538,10 +517,9 @@ name = "fj-host"
version = "0.5.0"
dependencies = [
"anyhow",
"approx 0.5.1",
"approx",
"bytemuck",
"clap",
"decorum",
"fj",
"futures",
"libloading",
@ -758,7 +736,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc32c2334f00ca5ac3695c5009ae35da21da8c62d255b5b96d56e2597a637a38"
dependencies = [
"ab_glyph",
"approx 0.5.1",
"approx",
"xi-unicode",
]
@ -1113,7 +1091,7 @@ version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb2d0de08694bed883320212c18ee3008576bfe8c306f4c3c4a58b4876998be"
dependencies = [
"approx 0.5.1",
"approx",
"matrixmultiply",
"nalgebra-macros",
"num-complex",
@ -1402,7 +1380,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e96040e0f10b65df992e8367983b7c3ac779046cd6d9a4a7cd1496e8c6b6ef51"
dependencies = [
"approx 0.5.1",
"approx",
"arrayvec",
"bitflags",
"downcast-rs",
@ -1422,7 +1400,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "760c93194acb2bda0c4d0696b0350c143da072c8f8dbe01b38fe1d1aa3a154e0"
dependencies = [
"approx 0.5.1",
"approx",
"bitflags",
"downcast-rs",
"either",
@ -1668,17 +1646,6 @@ version = "1.0.136"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
[[package]]
name = "serde_derive"
version = "1.0.136"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "sharded-slab"
version = "0.1.4"
@ -1694,7 +1661,7 @@ version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13a2609e876d4f77f6ab7ff5254fc39b4f1927ba8e6db3d18be7c32534d3725e"
dependencies = [
"approx 0.5.1",
"approx",
"num-complex",
"num-traits",
"paste",

View File

@ -15,7 +15,6 @@ categories = ["mathematics", "rendering"]
anyhow = "1.0.53"
approx = "0.5.1"
bytemuck = "1.7.3"
decorum = "0.3.1"
futures = "0.3.21"
libloading = "0.7.2"
nalgebra = "0.30.0"