-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
67 lines (62 loc) · 1.85 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
[workspace]
members = [
"crates/sophus",
"crates/sophus_core",
"crates/sophus_lie",
"crates/sophus_image",
"crates/sophus_sensor",
"crates/sophus_opt",
"crates/sophus_renderer",
"crates/sophus_viewer",
"crates/sophus_sim",
]
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/sophus-vision/sophus-rs/"
version = "0.11.0"
[workspace.dependencies]
sophus = {path = "crates/sophus", version = "0.11.0"}
sophus_core = {path = "crates/sophus_core", version = "0.11.0"}
sophus_image = {path = "crates/sophus_image", version = "0.11.0"}
sophus_lie = {path = "crates/sophus_lie", version = "0.11.0"}
sophus_geo = {path = "crates/sophus_geo", version = "0.11.0"}
sophus_opt = {path = "crates/sophus_opt", version = "0.11.0"}
sophus_sensor = {path = "crates/sophus_sensor", version = "0.11.0"}
sophus_renderer = { path = "crates/sophus_renderer", version = "0.11.0" }
sophus_sim = { path = "crates/sophus_sim", version = "0.11.0" }
sophus_viewer = { path = "crates/sophus_viewer", version = "0.11.0" }
approx = "0.5"
as-any = "0.3"
async-trait = "0.1"
bytemuck = {version = "1.20.0", features = ["derive"]}
concat-arrays = "0.1"
dyn-clone = "1.0"
env_logger = "0.11"
faer = "0.19"
linked-hash-map = "0.5"
log = "0.4"
nalgebra = {version = "0.33.2", features = ["rand", "bytemuck"]}
ndarray = {version = "0.15", features = ["approx-0_5"]}
num-traits = "0.2"
rand = "0.8"
snafu = "0.8.5"
typenum = {version = "1.17", features = ["const-generics"]}
winit = {version = "0.30.5", features = ["android-native-activity"]}
# viewer
eframe = { version = "0.28.1", features = ["wgpu"] }
egui-wgpu = "0.28.1"
egui_plot = "0.28.1"
egui_extras = "0.28.1"
thingbuf = "0.1.6"
wgpu = "0.20.1"
[profile.release]
debug = 1