-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
51 lines (47 loc) · 1.32 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
[package]
name = "emacs"
version = "0.19.0"
edition = "2021"
description = "Rust library for creating Emacs's dynamic modules"
homepage = "https://github.com/ubolonton/emacs-module-rs"
documentation = "https://ubolonton.github.io/emacs-module-rs/"
authors = [
"Aaron France <[email protected]>",
"Joey Ezechiëls <[email protected]>",
"Nguyễn Tuấn Anh <[email protected]>",
]
license = "BSD-3-Clause"
readme = "README.md"
keywords = ["emacs", "emacs-module", "ffi"]
categories = ["api-bindings", "development-tools::ffi"]
include = [
"Cargo.toml",
".rustfmt.toml",
"CHANGELOG.md",
"README.md",
"src/**/*"
]
[dependencies]
thiserror = "1.0"
anyhow = "1.0"
ctor = "0.1.12"
once_cell = "1.2.0"
emacs_module = { path = "emacs-module", version = "0.18.0" }
emacs-macros = { path = "emacs-macros", version = "0.17.0" }
[build-dependencies]
rustc_version = "0.2.3"
[features]
default = []
utf-8-validation = []
lossy-integer-conversion = []
nonzero-integer-conversion = []
# This feature is intended as a workaround when building on new untested platforms. If the crate
# cannot be built without this feature, please report the issue at
# https://github.com/ubolonton/emacs-module-rs/issues/new.
bindgen = ["emacs_module/bindgen"]
[workspace]
members = [
".",
"test-module",
"rs-module",
]