1 Star 0 Fork 0

chonglin/deno_core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Cargo.toml 1.95 KB
一键复制 编辑 原始数据 按行查看 历史
denobot 提交于 2023-12-12 13:47 . 0.238.0 (#385)
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
[workspace]
resolver = "2"
members = [
"core",
"ops",
"ops/compile_test_runner",
"serde_v8",
"testing",
]
[workspace.package]
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
repository = "https://github.com/denoland/deno_core"
[workspace.dependencies]
# Local dependencies
deno_core = { version = "0.238.0", path = "./core" }
deno_ops = { version = "0.114.0", path = "./ops" }
serde_v8 = { version = "0.147.0", path = "./serde_v8" }
v8 = { version = "0.82.0", default-features = false }
deno_ast = { version = "0.31.2", features = ["transpiling"] }
deno_unsync = "0.3.0"
anyhow = "1"
bencher = "0.1"
bytes = "1.4.0"
cooked-waker = "5"
derive_more = "0.99.17"
fastrand = "2"
futures = "0.3.21"
libc = "0.2.126"
log = "0.4.17"
num-bigint = { version = "0.4", features = ["rand"] }
parking_lot = "0.12.0"
pin-project = "1"
pretty_assertions = "1.3.0"
rand = "0.8.5"
prettyplease = "0.2.15"
rstest = "0"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1"
smallvec = "1.8"
sourcemap = "7"
static_assertions = "1"
strum = { version = "0.25.0", features = ["derive"] }
strum_macros = "0.25.0"
testing_macros = "0.2.11"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
url = { version = "2", features = ["serde", "expose_internals"] }
# macros
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "extra-traits"] }
proc-macro-rules = "0.4.0"
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
[profile.release]
codegen-units = 1
incremental = true
lto = true
opt-level = 'z' # Optimize for size
# Build release with debug symbols: cargo build --profile=release-with-debug
[profile.release-with-debug]
inherits = "release"
debug = true
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
[profile.bench]
codegen-units = 1
incremental = true
lto = true
opt-level = 'z' # Optimize for size
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/godlinc/deno_core.git
git@gitee.com:godlinc/deno_core.git
godlinc
deno_core
deno_core
main

搜索帮助