-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (36 loc) · 945 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
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "cel-eval"
version = "0.1.17"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.htmlž
[lib]
name = "cel_eval"
crate-type = ["staticlib","cdylib", "rlib"]
path = "src/lib.rs"
[dependencies]
cel-interpreter = "0.8.1"
cel-parser = "0.7.1"
uniffi = { version = "0.28" }
serde = { version = "1.0", features = ["serde_derive"] }
serde_json = { version = "1.0" }
async-trait = "0.1.81"
wasm-bindgen-futures = "0.4.43"
futures-lite = "2.3.0"
[dev-dependencies]
tokio = { version = "^1.20", features = ["rt-multi-thread", "macros"] }
[build-dependencies]
uniffi = { version = "0.28", features = [ "build" ] }
[[bin]]
name = "uniffi-bindgen"
path = "uniffi-bindgen.rs"
[profile.release]
opt-level = "z" # Optimize for size.
lto = "fat"
debug=false
incremental = false
overflow-checks = false
codegen-units = 1
panic = "abort"
strip = true
[workspace]
members = ["wasm"]