-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 913 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
[workspace]
resolver = "2"
members = [
"leo3",
"leo3-ffi",
"leo3-build-config",
"leo3-binding-ir",
"leo3-macros",
"leo3-macros-backend",
]
exclude = ["examples", "leo3-ffi-check"]
[workspace.package]
version = "0.2.2"
edition = "2021"
rust-version = "1.88"
authors = ["Leo3 Contributors"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/AndPuQing/leo3"
repository = "https://github.com/AndPuQing/leo3.git"
documentation = "https://docs.rs/leo3"
[workspace.dependencies]
leo3-ffi = { path = "leo3-ffi", version = "0.2.2" }
leo3-build-config = { path = "leo3-build-config", version = "0.2.2" }
leo3-binding-ir = { path = "leo3-binding-ir", version = "0.2.2" }
leo3-macros = { path = "leo3-macros", version = "0.2.2" }
leo3-macros-backend = { path = "leo3-macros-backend", version = "0.2.2" }
libc = "0.2"
libloading = "0.9"
criterion = "0.8"
[profile.release]
lto = "thin"