-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 837 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
[workspace]
resolver = "2"
members = [
"interface",
"host",
"module",
"shared",
"crate_compilation_info",
"testing/shared",
"testing/host",
"testing/module",
"exportify",
"export",
"relib",
"examples/basic_host",
# TODO: enable it back?
# excluded from workspace because it doesn't need default-features of relib_module crate
# "examples/custom_global_alloc",
]
[workspace.package]
version = "0.2.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/xxshady/relib"
readme = "README.md"
rust-version = "1.83.0"
[workspace.metadata.release]
pre-release-commit-message = "v{{version}}"
tag = false
[workspace.dependencies]
libc = "0.2.164"
libloading = "0.8.6"
thread-id = "5.0.0"
quote = "1.0.37"
proc-macro2 = "1.0.92"
[workspace.dependencies.syn]
version = "2.0.89"
features = ["full"]