forked from foxglove/foxglove-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 719 Bytes
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
[package]
name = "foxglove_c"
version.workspace = true
edition.workspace = true
publish = false
[lib]
name = "foxglove"
crate-type = ["staticlib", "cdylib"]
[lints]
workspace = true
[dependencies]
tracing.workspace = true
[target.'cfg(target_family = "wasm")'.dependencies]
foxglove = { path = "../rust/foxglove", default-features = false }
[target.'cfg(not(target_family = "wasm"))'.dependencies]
foxglove = { path = "../rust/foxglove", default-features = false, features = [
"live_visualization",
"lz4",
"tls",
"zstd",
] }
base64 = "0.22.1"
bitflags = "2.9.0"
env_logger = "0.11.5"
log.workspace = true
mcap.workspace = true
[build-dependencies]
cbindgen = "0.29.0"
[dev-dependencies]
maplit = "1.0.2"