forked from ubolonton/emacs-module-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (39 loc) · 1.02 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
[package]
name = "emacs"
version = "0.11.0"
edition = "2018"
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]
failure = { version = "0.1.5", features = ["std"] }
failure_derive = "0.1.5"
lazy_static = "1.4"
ctor = "0.1.12"
emacs_module = { path = "emacs-module", version = "0.10.0" }
emacs-macros = { path = "emacs-macros", version = "0.11.0" }
[features]
utf-8-validation = []
lossy-integer-conversion = []
[workspace]
members = [
".",
"test-module",
"rs-module",
]