-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 767 Bytes
/
Cargo.toml
File metadata and controls
22 lines (20 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[workspace]
members = ["javascriptcore-sys", "javascriptcore-macros"]
[package]
name = "javascriptcore"
version = "0.0.6"
edition = "2021"
authors = ["Bruce Mitchener <bruce.mitchener@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Bindings to the JavaScriptCore framework."
keywords = ["javascript", "jsc", "scripting"]
documentation = "https://docs.rs/javascriptcore"
homepage = "https://github.com/endoli/javascriptcore.rs"
repository = "https://github.com/endoli/javascriptcore.rs"
categories = ["api-bindings"]
exclude = ["javascript_core/**"]
[dependencies]
javascriptcore-macros = { path = "javascriptcore-macros", version = "0.0.6" }
javascriptcore-sys = { path = "javascriptcore-sys", version = "0.0.6" }
thiserror = "2.0.4"