forked from neon-bindings/neon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1003 Bytes
/
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
[package]
name = "neon"
version = "0.2.0"
authors = ["Dave Herman <[email protected]>"]
description = "A safe abstraction layer for Node.js."
readme = "README.md"
documentation = "https://api.neon-bindings.com/neon/index.html"
homepage = "https://www.neon-bindings.com"
repository = "https://github.com/neon-bindings/neon"
license = "MIT/Apache-2.0"
exclude = ["neon.jpg"]
build = "build.rs"
# Sharing the name of the library produced by neon-runtime allows the
# `build.rs` script for Neon projects to find the path to `node.lib`
# in Windows.
#
# See also: http://doc.crates.io/build-script.html#the-links-manifest-key
links = "neon-runtime"
[build-dependencies]
neon-build = { version = "=0.2.0", path = "crates/neon-build" }
[dev-dependencies]
rustc_version = "0.2"
lazy_static = "0.2.8"
[dependencies]
cslice = "0.2"
semver = "0.9.0"
neon-runtime = { version = "=0.2.0", path = "crates/neon-runtime" }
[workspace]
members = ["crates/neon-build", "crates/neon-runtime"]
exclude = ["test"]