0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2025-03-09 21:47:00 -04:00
rusty-v8/Cargo.toml

52 lines
1.1 KiB
TOML
Raw Normal View History

2019-10-08 01:56:41 +02:00
[package]
2019-10-31 21:01:29 -04:00
name = "rusty_v8"
version = "0.0.5"
description = "Rust bindings to V8"
readme = "README.md"
authors = ["the Deno authors"]
license = "MIT"
2019-10-08 01:56:41 +02: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.
"*.md",
"*.txt",
"*.settings",
"*OWNERS*",
"AUTHORS",
"LICENSE*",
"README*",
"build/android/",
"build/chromeos/",
"build/fuchsia/",
"buildtools/third_party/libc++/trunk/test/",
"buildtools/third_party/libc++abi/trunk/test/",
"buildtools/checkdeps/",
"buildtools/clang_format/",
"v8/ChangeLog",
"v8/docs/",
"v8/benchmarks/",
"v8/samples/",
"v8/test/",
"v8/third_party/wasm-api",
"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-10-08 01:56:41 +02:00
[dependencies]
lazy_static = "1.4.0"
libc = "0.2.65"
2019-10-15 18:31:05 -07:00
[build-dependencies]
2019-10-31 12:03:44 -04:00
cargo_gn = "0.0.13"
which = "3.0.0"