forked from yanhuangdata/vectorcxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (25 loc) · 849 Bytes
/
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
[package]
name = "vectorcxx"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# update cxx-build below and CXXBRIDGE_CMD_VERSION in rust_bridge.cmake together
cxx = "1.0.81"
vector = { path = "./vector", default-features = true }
tempfile = "3.2.0"
futures = "0.3.17"
tokio = { version = "1.13.0", features = ["test-util"] }
tokio-test = "0.4.2"
serde_json = { version = "1.0.68" }
tracing = "0.1"
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "time", "local-time", "fmt"] }
time = { version = "0.3.15", features = ["macros"] }
[build-dependencies]
cxx-build = "1.0.81"
[lib]
crate-type = ["staticlib"]
# below config options make the the build of dynamic lib available
#crate-type = ["cdylib"]
#[profile.dev]
#rpath = true