2019-10-07 23:56:41 +00:00
|
|
|
[package]
|
2019-11-01 01:01:29 +00:00
|
|
|
name = "rusty_v8"
|
2019-12-21 02:45:58 +00:00
|
|
|
version = "0.0.14"
|
2019-11-19 22:48:50 +00:00
|
|
|
description = "Rust bindings to V8"
|
|
|
|
readme = "README.md"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
license = "MIT"
|
2019-10-07 23:56:41 +00:00
|
|
|
edition = "2018"
|
2019-11-19 22:48:50 +00:00
|
|
|
repository = "https://github.com/denoland/rusty_v8"
|
2019-11-30 02:58:29 +00:00
|
|
|
|
2019-11-19 22:48:50 +00:00
|
|
|
exclude = [
|
2019-11-30 02:58:29 +00:00
|
|
|
# To keep the package under the 10mb limit imposed by crates.io we exclude
|
|
|
|
# a lot of files that are not needed for the build.
|
|
|
|
"*.md",
|
|
|
|
"*.settings",
|
2019-11-30 16:41:31 +00:00
|
|
|
"*.txt",
|
2019-11-30 02:58:29 +00:00
|
|
|
"*OWNERS*",
|
|
|
|
"AUTHORS",
|
|
|
|
"LICENSE*",
|
|
|
|
"README*",
|
|
|
|
"build/android/",
|
|
|
|
"build/chromeos/",
|
|
|
|
"build/fuchsia/",
|
|
|
|
"buildtools/checkdeps/",
|
|
|
|
"buildtools/clang_format/",
|
2019-11-30 16:41:31 +00:00
|
|
|
"buildtools/third_party/libc++/trunk/benchmarks/",
|
|
|
|
"buildtools/third_party/libc++/trunk/docs/",
|
|
|
|
"buildtools/third_party/libc++/trunk/lib/",
|
|
|
|
"buildtools/third_party/libc++/trunk/test/",
|
|
|
|
"buildtools/third_party/libc++/trunk/utils/",
|
|
|
|
"buildtools/third_party/libc++/trunk/www/",
|
|
|
|
"buildtools/third_party/libc++abi/trunk/test/",
|
2019-11-30 02:58:29 +00:00
|
|
|
"v8/ChangeLog",
|
|
|
|
"v8/benchmarks/",
|
2019-11-30 16:41:31 +00:00
|
|
|
"v8/docs/",
|
2019-11-30 02:58:29 +00:00
|
|
|
"v8/samples/",
|
|
|
|
"v8/test/",
|
2019-11-30 16:41:31 +00:00
|
|
|
"v8/third_party/wasm-api/",
|
2019-11-30 02:58:29 +00:00
|
|
|
"v8/tools/",
|
|
|
|
# These files are required for the build.
|
|
|
|
"!BUILD.gn",
|
|
|
|
"!test-torque.tq",
|
|
|
|
"!v8/tools/run.py",
|
|
|
|
"!v8/tools/testrunner/utils/dump_build_config.py",
|
|
|
|
"!v8/tools/gen-postmortem-metadata.py",
|
|
|
|
"!v8/tools/js2c.py",
|
|
|
|
"!tools/clang/scripts/update.py",
|
2019-11-19 22:48:50 +00:00
|
|
|
]
|
2019-10-07 23:56:41 +00:00
|
|
|
|
2019-11-15 17:57:34 +00:00
|
|
|
[dependencies]
|
2019-11-16 00:21:34 +00:00
|
|
|
lazy_static = "1.4.0"
|
2019-12-21 02:24:53 +00:00
|
|
|
libc = "0.2.66"
|
2019-12-04 07:03:17 +00:00
|
|
|
bitflags = "1.2.1"
|
2019-11-15 17:57:34 +00:00
|
|
|
|
2019-10-16 01:31:05 +00:00
|
|
|
[build-dependencies]
|
2019-10-31 16:03:44 +00:00
|
|
|
cargo_gn = "0.0.13"
|
2019-12-21 02:24:53 +00:00
|
|
|
which = "3.1.0"
|