veilid/veilid-flutter/rust/Cargo.toml

38 lines
1004 B
TOML
Raw Normal View History

[package]
name = "veilid-flutter"
version = "0.1.0"
edition = "2021"
[lib]
2022-02-06 21:18:42 -05:00
crate-type = ["cdylib", "staticlib", "rlib"]
[dependencies]
veilid-core = { path="../../veilid-core" }
2022-06-07 21:31:05 -04:00
tracing = { version = "^0", features = ["log", "attributes"] }
tracing-subscriber = "^0"
2022-01-23 11:12:54 -05:00
parking_lot = "^0"
2022-02-06 21:18:42 -05:00
backtrace = "^0"
serde_json = "^1"
serde = "^1"
futures = "^0"
# Dependencies for native builds only
# Linux, Windows, Mac, iOS, Android
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
async-std = { version = "^1", features = ["unstable"] }
allo-isolate = "^0"
ffi-support = "^0"
lazy_static = "^1"
2022-06-15 21:51:38 -04:00
tracing-opentelemetry = "^0"
opentelemetry = { version = "^0", features = ["rt-async-std"] }
opentelemetry-otlp = { version = "^0", features = ["grpc-sys"] }
opentelemetry-semantic-conventions = "^0"
hostname = "^0"
2022-02-06 21:18:42 -05:00
2022-06-07 21:31:05 -04:00
# Dependencies for WASM builds only
2022-06-15 21:51:38 -04:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
2022-06-07 21:31:05 -04:00
2022-03-03 20:45:39 -05:00
# Dependencies for Android builds only
[target.'cfg(target_os = "android")'.dependencies]
jni = "^0"