-
Notifications
You must be signed in to change notification settings - Fork 51
/
Cargo.toml
34 lines (31 loc) · 1.04 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
[workspace]
resolver = "2"
members = [
"core",
"macro",
"runtime",
"tool",
"example",
"feature_tests",
]
[workspace.package]
# Individual subcrates may choose to temporarily switch to a different version
version = "0.9.0"
# Applies to diplomat-core, diplomat, and diplomat-runtime
# Diplomat-tool has no MSRV for now
rust-version = "1.71"
authors = [
"Shadaj Laddad <[email protected]>",
"Manish Goregaokar <[email protected]>",
"Quinn Okabayashi <[email protected]>"
]
edition = "2021"
repository = "https://github.com/rust-diplomat/diplomat"
license = "MIT OR Apache-2.0"
categories = ["development-tools", "compilers"]
keywords = ["ffi", "codegen"]
[workspace.dependencies]
diplomat = { version = "0.9.0", path = "macro", default-features = false }
diplomat_core = { version = "0.9.0", path = "core", default-features = false }
diplomat-runtime = { version = "0.9.0", path = "runtime", default-features = false }
diplomat-tool = { version = "0.9.0", path = "tool", default-features = false }