mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 20:28:58 +00:00
63 lines
1.4 KiB
TOML
63 lines
1.4 KiB
TOML
[package]
|
|
name = "rusty_v8"
|
|
version = "0.4.2"
|
|
description = "Rust bindings to V8"
|
|
readme = "README.md"
|
|
authors = ["the Deno authors"]
|
|
license = "MIT"
|
|
edition = "2018"
|
|
repository = "https://github.com/denoland/rusty_v8"
|
|
|
|
exclude = [
|
|
# 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",
|
|
"*.txt",
|
|
"*OWNERS*",
|
|
"AUTHORS",
|
|
"LICENSE*",
|
|
"README*",
|
|
"build/android/",
|
|
"build/chromeos/",
|
|
"build/fuchsia/",
|
|
"buildtools/checkdeps/",
|
|
"buildtools/clang_format/",
|
|
"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/",
|
|
"v8/ChangeLog",
|
|
"v8/benchmarks/",
|
|
"v8/docs/",
|
|
"v8/samples/",
|
|
"v8/test/",
|
|
"v8/tools/",
|
|
# These files are required for the build.
|
|
"!.gn",
|
|
"!BUILD.gn",
|
|
"!tools/clang/scripts/update.py",
|
|
"!v8/test/torque/test-torque.tq",
|
|
"!v8/tools/gen-postmortem-metadata.py",
|
|
"!v8/tools/js2c.py",
|
|
"!v8/tools/run.py",
|
|
"!v8/tools/snapshot/asm_to_inline_asm.py",
|
|
"!v8/tools/testrunner/utils/dump_build_config.py",
|
|
]
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2.69"
|
|
bitflags = "1.2.1"
|
|
|
|
[build-dependencies]
|
|
cargo_gn = "0.0.15"
|
|
which = "3.1.1"
|
|
|
|
[dev-dependencies]
|
|
trybuild = "1.0.26"
|