-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
57 lines (50 loc) · 1.51 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# Copyright (c) 2023 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Pierre Avital, <[email protected]>
#
[workspace]
members = [
"stabby-macros",
"stabby",
"stabby-abi",
"examples/library",
"examples/libloading",
"examples/dynlinkage",
]
resolver = "2"
[profile.dev]
opt-level = 3
[workspace.package]
authors = ["Pierre Avital <[email protected]>"]
license = " EPL-2.0 OR Apache-2.0"
categories = ["development-tools::ffi", "no-std::no-alloc"]
repository = "https://github.com/ZettaScaleLabs/stabby"
readme = "stabby/README.md"
version = "36.2.1" # Track
[workspace.dependencies]
stabby-macros = { path = "./stabby-macros/", version = "36.2.1", default-features = false } # Track
stabby-abi = { path = "./stabby-abi/", version = "36.2.1", default-features = false } # Track
stabby = { path = "./stabby/", version = "36.2.1", default-features = false } # Track
abi_stable = "0.11.0"
libc = "0.2"
libloading = ">=0.7.3, <0.9"
proc-macro2 = "1.0"
proc-macro-crate = ">=1, <4"
quote = "1.0"
rustversion = "<2"
sha2-const-stable = "0.1"
syn = "1.0.86"
# dev-dependencies
criterion = "0.5.1"
rand = "0.8"
serde = "1.0.203"
smol = ">=1, <3"