-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
46 lines (38 loc) · 1.47 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
[package]
name = "jaffi"
version = "0.2.0"
edition = "2021"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown)
description = """
Support for the jaffi code generator.
"""
# These URLs point to more information about the repository
documentation = "https://docs.rs/jaffi"
homepage = "https://github.com/bluejekyll/jaffi#readme"
repository = "https://github.com/bluejekyll/jaffi"
# This points to a file in the repository (relative to this Cargo.toml). The
# contents of this file are stored and indexed in the registry.
readme = "./README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["Java", "JVM", "JNI"]
categories = ["external-ffi-bindings"]
# This is a string description of the license for this package. Currently
# crates.io will validate the license provided against a whitelist of known
# license identifiers from http://spdx.org/licenses/. Multiple licenses can
# be separated with a `/`
license = "MIT/Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["jaffi_support", "integration_tests"]
[dependencies]
cafebabe = { version = "0.6.0" }
enum-as-inner = "0.5"
heck = "0.4.0"
jaffi_support = { version = "0.2.0", path = "./jaffi_support" }
proc-macro2 = "1.0.40"
quote = "1.0.20"
thiserror = "1.0.20"
typed-builder = "0.10.0"