2019-10-07 23:56:41 +00:00
|
|
|
[package]
|
2021-10-27 12:32:12 +00:00
|
|
|
name = "v8"
|
2022-01-18 18:55:42 +00:00
|
|
|
version = "0.38.0"
|
2019-11-19 22:48:50 +00:00
|
|
|
description = "Rust bindings to V8"
|
|
|
|
readme = "README.md"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
license = "MIT"
|
2022-01-04 20:32:48 +00:00
|
|
|
edition = "2021"
|
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.
|
2021-02-10 22:24:50 +00:00
|
|
|
"*.css",
|
|
|
|
"*.gyp",
|
|
|
|
"*.gypi",
|
|
|
|
"*.html",
|
|
|
|
"*.m4",
|
2019-11-30 02:58:29 +00:00
|
|
|
"*.md",
|
|
|
|
"*.settings",
|
2019-11-30 16:41:31 +00:00
|
|
|
"*.txt",
|
2019-11-30 02:58:29 +00:00
|
|
|
"*OWNERS*",
|
2021-02-10 22:24:50 +00:00
|
|
|
".*",
|
2019-11-30 02:58:29 +00:00
|
|
|
"AUTHORS",
|
2021-02-10 22:24:50 +00:00
|
|
|
"Doxyfile*",
|
2019-11-30 02:58:29 +00:00
|
|
|
"LICENSE*",
|
2021-02-10 22:24:50 +00:00
|
|
|
"Makefile*",
|
2019-11-30 02:58:29 +00:00
|
|
|
"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/",
|
2021-07-02 19:40:14 +00:00
|
|
|
"third_party/icu/android/",
|
|
|
|
"third_party/icu/android_small/",
|
|
|
|
"third_party/icu/cast/",
|
|
|
|
"third_party/icu/chromeos/",
|
|
|
|
"third_party/icu/common/icudtb.dat",
|
|
|
|
"third_party/icu/flutter/",
|
|
|
|
"third_party/icu/ios/",
|
2021-02-10 22:24:50 +00:00
|
|
|
"third_party/icu/patches/",
|
|
|
|
"third_party/icu/source/config/",
|
|
|
|
"third_party/icu/source/data/",
|
|
|
|
"third_party/icu/source/extra/",
|
|
|
|
"third_party/icu/source/io/",
|
|
|
|
"third_party/icu/source/python/",
|
|
|
|
"third_party/icu/source/samples/",
|
|
|
|
"third_party/icu/source/tools/",
|
|
|
|
"third_party/icu/tzres/",
|
2021-02-03 23:17:40 +00:00
|
|
|
"tools/clang",
|
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/",
|
2020-12-28 11:07:22 +00:00
|
|
|
"v8/tools/",
|
2019-11-30 02:58:29 +00:00
|
|
|
# These files are required for the build.
|
2020-12-28 11:07:22 +00:00
|
|
|
"!.gn",
|
|
|
|
"!BUILD.gn",
|
|
|
|
"!tools/clang/scripts/update.py",
|
|
|
|
"!v8/test/torque/test-torque.tq",
|
|
|
|
"!v8/tools/gen-postmortem-metadata.py",
|
2021-02-10 13:27:01 +00:00
|
|
|
"!v8/tools/gen-v8-gn.py",
|
2020-12-28 11:07:22 +00:00
|
|
|
"!v8/tools/js2c.py",
|
|
|
|
"!v8/tools/run.py",
|
|
|
|
"!v8/tools/snapshot/asm_to_inline_asm.py",
|
|
|
|
"!v8/tools/testrunner/utils/dump_build_config.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"
|
2021-04-12 20:51:57 +00:00
|
|
|
libc = "0.2.93"
|
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]
|
2021-04-12 20:51:57 +00:00
|
|
|
which = "4.1.0"
|
|
|
|
fslock = "0.1.6"
|
2019-12-22 15:22:44 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-01-04 20:32:48 +00:00
|
|
|
trybuild = "1.0.53"
|
2021-02-12 10:45:02 +00:00
|
|
|
align-data = "0.1.0"
|
2020-10-16 15:15:16 +00:00
|
|
|
|
2022-01-04 20:32:48 +00:00
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
|
|
winit = "0.26"
|
|
|
|
pixels = "0.8.0"
|
|
|
|
ndk = "0.3.0"
|
|
|
|
ndk-glue = { version = "0.5.0", features = ["logger"] }
|
|
|
|
|
2020-10-16 15:15:16 +00:00
|
|
|
[[example]]
|
|
|
|
name = "hello_world"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "shell"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "process"
|
2022-01-04 20:32:48 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "android_fractal"
|
|
|
|
crate-type = ["cdylib"]
|