2019-10-07 19:56:41 -04:00
|
|
|
[package]
|
2019-10-31 21:01:29 -04:00
|
|
|
name = "rusty_v8"
|
2020-01-05 00:32:03 -05:00
|
|
|
version = "0.0.23"
|
2019-11-19 17:48:50 -05:00
|
|
|
description = "Rust bindings to V8"
|
|
|
|
readme = "README.md"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
license = "MIT"
|
2019-10-07 19:56:41 -04:00
|
|
|
edition = "2018"
|
2019-11-19 17:48:50 -05:00
|
|
|
repository = "https://github.com/denoland/rusty_v8"
|
2019-11-29 21:58:29 -05:00
|
|
|
|
2019-11-19 17:48:50 -05:00
|
|
|
exclude = [
|
2019-11-29 21:58:29 -05: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 11:41:31 -05:00
|
|
|
"*.txt",
|
2019-11-29 21:58:29 -05:00
|
|
|
"*OWNERS*",
|
|
|
|
"AUTHORS",
|
|
|
|
"LICENSE*",
|
|
|
|
"README*",
|
|
|
|
"build/android/",
|
|
|
|
"build/chromeos/",
|
|
|
|
"build/fuchsia/",
|
|
|
|
"buildtools/checkdeps/",
|
|
|
|
"buildtools/clang_format/",
|
2019-11-30 11:41:31 -05: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-29 21:58:29 -05:00
|
|
|
"v8/ChangeLog",
|
|
|
|
"v8/benchmarks/",
|
2019-11-30 11:41:31 -05:00
|
|
|
"v8/docs/",
|
2019-11-29 21:58:29 -05:00
|
|
|
"v8/samples/",
|
|
|
|
"v8/test/",
|
2020-01-04 21:17:36 -05:00
|
|
|
"v8/tools/profviz",
|
|
|
|
"v8/tools/turbolizer",
|
|
|
|
"v8/tools/testrunner",
|
|
|
|
"v8/tools/release",
|
|
|
|
"v8/tools/grokdump.py",
|
|
|
|
"v8/tools/mb",
|
|
|
|
"v8/tools/unittests",
|
|
|
|
"v8/tools/gcmole",
|
|
|
|
"v8/tools/clusterfuzz",
|
|
|
|
"v8/tools/heap-stats",
|
|
|
|
"v8/tools/profview",
|
|
|
|
"v8/tools/debug_helper",
|
|
|
|
"v8/tools/callstats.html",
|
|
|
|
"v8/tools/sanitizers",
|
|
|
|
"v8/tools/ignition",
|
2019-11-30 11:41:31 -05:00
|
|
|
"v8/third_party/wasm-api/",
|
2019-11-29 21:58:29 -05:00
|
|
|
# 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 17:48:50 -05:00
|
|
|
]
|
2019-10-07 19:56:41 -04:00
|
|
|
|
2019-11-15 12:57:34 -05:00
|
|
|
[dependencies]
|
2019-11-15 19:21:34 -05:00
|
|
|
lazy_static = "1.4.0"
|
2019-12-20 21:24:53 -05:00
|
|
|
libc = "0.2.66"
|
2019-12-04 02:03:17 -05:00
|
|
|
bitflags = "1.2.1"
|
2019-11-15 12:57:34 -05:00
|
|
|
|
2019-10-15 21:31:05 -04:00
|
|
|
[build-dependencies]
|
2020-01-05 00:21:33 -05:00
|
|
|
cargo_gn = "0.0.15"
|
2019-12-20 21:24:53 -05:00
|
|
|
which = "3.1.0"
|
2019-12-22 10:22:44 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-01-04 18:00:22 -05:00
|
|
|
trybuild = "1.0.19"
|