-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b386ec2
commit 29d8f21
Showing
11 changed files
with
63 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "neon" | ||
version = "0.9.1" | ||
version = "0.10.0" | ||
authors = ["Dave Herman <[email protected]>"] | ||
description = "A safe abstraction layer for Node.js." | ||
readme = "README.md" | ||
|
@@ -12,7 +12,7 @@ build = "build.rs" | |
edition = "2018" | ||
|
||
[build-dependencies] | ||
neon-build = { version = "=0.9.1", path = "crates/neon-build" } | ||
neon-build = { version = "=0.10.0", path = "crates/neon-build" } | ||
|
||
[dev-dependencies] | ||
lazy_static = "1.4.0" | ||
|
@@ -24,8 +24,8 @@ failure = "0.1.5" # used for a doc example | |
[dependencies] | ||
semver = "0.9.0" | ||
smallvec = "1.4.2" | ||
neon-runtime = { version = "=0.9.1", path = "crates/neon-runtime" } | ||
neon-macros = { version = "=0.9.1", path = "crates/neon-macros", optional = true } | ||
neon-runtime = { version = "=0.10.0", path = "crates/neon-runtime" } | ||
neon-macros = { version = "=0.10.0", path = "crates/neon-macros", optional = true } | ||
|
||
[features] | ||
default = ["legacy-runtime"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "neon-cli", | ||
"version": "0.9.1", | ||
"version": "0.10.0", | ||
"description": "Build and load native Rust/Neon modules.", | ||
"author": "Dave Herman <[email protected]>", | ||
"repository": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "neon-build" | ||
version = "0.9.1" | ||
version = "0.10.0" | ||
authors = ["Dave Herman <[email protected]>"] | ||
description = "Build logic required for Neon projects." | ||
repository = "https://github.com/neon-bindings/neon" | ||
|
@@ -9,4 +9,4 @@ edition = "2018" | |
build = "build.rs" | ||
|
||
[dependencies] | ||
neon-sys = { version = "=0.9.1", path = "../neon-sys", optional = true } | ||
neon-sys = { version = "=0.10.0", path = "../neon-sys", optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "neon-macros" | ||
version = "0.9.1" | ||
version = "0.10.0" | ||
authors = ["Dave Herman <[email protected]>"] | ||
description = "Procedural macros supporting Neon" | ||
repository = "https://github.com/neon-bindings/neon" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "neon-runtime" | ||
version = "0.9.1" | ||
version = "0.10.0" | ||
authors = ["Dave Herman <[email protected]>"] | ||
description = "Bindings to the Node.js native addon API, used by the Neon implementation." | ||
repository = "https://github.com/neon-bindings/neon" | ||
|
@@ -10,7 +10,7 @@ edition = "2018" | |
[dependencies] | ||
cfg-if = "1.0.0" | ||
libloading = { version = "0.6.5", optional = true } | ||
neon-sys = { version = "=0.9.1", path = "../neon-sys", optional = true } | ||
neon-sys = { version = "=0.10.0", path = "../neon-sys", optional = true } | ||
smallvec = "1.4.2" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "neon-sys" | ||
version = "0.9.1" | ||
version = "0.10.0" | ||
authors = ["David Herman <[email protected]>"] | ||
description = "Exposes the low-level V8/NAN C/C++ APIs. Will be superseded by N-API." | ||
description = "Exposes the low-level V8/NAN C/C++ APIs. Will be superseded by N-API." | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
links = "neon" # libneon.{a,obj} gets linked in with this package | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"neon": "0.9", | ||
"neon": "0.10", | ||
"napi": "6", | ||
"cargo-cp-artifact": "0.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "create-neon", | ||
"version": "0.1.5", | ||
"version": "0.2.0", | ||
"description": "Create Neon projects with no build configuration.", | ||
"author": "Dave Herman <[email protected]>", | ||
"license": "MIT", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.