rusty_v8/Cargo.toml

63 lines
1.4 KiB
TOML
Raw Normal View History

2019-10-07 23:56:41 +00:00
[package]
2019-11-01 01:01:29 +00:00
name = "rusty_v8"
2020-10-07 09:55:30 +00:00
version = "0.11.0"
description = "Rust bindings to V8"
readme = "README.md"
authors = ["the Deno authors"]
license = "MIT"
2019-10-07 23:56:41 +00:00
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.
2020-05-11 21:17:31 +00:00
".*",
"*.md",
"*.settings",
2019-11-30 16:41:31 +00:00
"*.txt",
"*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/",
"v8/ChangeLog",
"v8/benchmarks/",
2019-11-30 16:41:31 +00:00
"v8/docs/",
"v8/samples/",
"v8/test/",
"v8/tools/",
# These files are required for the build.
2020-05-11 21:17:31 +00:00
"!.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",
]
2019-10-07 23:56:41 +00:00
[dependencies]
lazy_static = "1.4.0"
2020-08-27 03:59:40 +00:00
libc = "0.2.76"
2019-12-04 07:03:17 +00:00
bitflags = "1.2.1"
2019-10-16 01:31:05 +00:00
[build-dependencies]
2020-01-05 05:21:33 +00:00
cargo_gn = "0.0.15"
2020-08-05 18:36:51 +00:00
which = "4.0.2"
[dev-dependencies]
2020-08-27 03:59:40 +00:00
trybuild = "1.0.33"