forked from sophus-vision/sophus-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (64 loc) · 1.76 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
members = [
"crates/sophus",
"crates/sophus_core",
"crates/sophus_lie",
"crates/sophus_pyo3",
"crates/sophus_image",
"crates/sophus_sensor",
"crates/sophus_opt",
"crates/sophus_viewer",
]
resolver = "2"
[workspace.package]
edition = "2021"
include = [
"**/*.rs",
"**/*.wgsl",
"**/*.md",
"**/Cargo.toml",
]
keywords = ["robotics", "optimization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/farm-ng/sophus-rs/"
version = "0.7.0"
[workspace.dependencies]
sophus = {path = "crates/sophus", version = "0.7.0"}
sophus_core = {path = "crates/sophus_core", version = "0.7.0"}
sophus_image = {path = "crates/sophus_image", version = "0.7.0"}
sophus_lie = {path = "crates/sophus_lie", version = "0.7.0"}
sophus_opt = {path = "crates/sophus_opt", version = "0.7.0"}
sophus_pyo3 = {path = "crates/sophus_pyo3", version = "0.7.0"}
sophus_sensor = {path = "crates/sophus_sensor", version = "0.7.0"}
sophus_viewer = {path = "crates/sophus_viewer", version = "0.7.0"}
approx = "0.5"
as-any = "0.3"
assertables = "7.0"
async-trait = "0.1"
bytemuck = {version = "1.14", features = ["derive"]}
concat-arrays = "0.1"
dyn-clone = "1.0"
eframe = {version = "0.27", features = ["wgpu"]}
egui_extras = "0.27"
env_logger = "0.11"
faer = "0.19"
hollywood = {version = "0.7.0"}
image = {version = "0.25", features = [
"jpeg",
"png",
"tiff",
]}
linked-hash-map = "0.5"
log = "0.4"
nalgebra = {version = "0.32", features = ["rand"]}
ndarray = {version = "0.15", features = ["approx-0_5"]}
num-traits = "0.2"
numpy = "0.21"
png = "0.17"
rand = "0.8"
tokio = {version = "1", features = ["full"]}
typenum = {version = "1.17", features = ["const-generics"]}
wgpu = "0.19"
winit = {version = "0.30", features = ["android-native-activity"]}
[profile.release]
debug = 1