-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
32 lines (26 loc) · 864 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "ruwren"
version = { workspace = true }
authors = ["Jengamon <[email protected]>"]
edition = "2021"
license-file = "LICENSE"
repository = "https://github.com/Jengamon/ruwren"
homepage = "http://wren.io"
keywords = ["wren", "scripting", "embed", "ruwren"]
description = "Rusty bindings to Wren programming language"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "ruwren-macros", "ruwren-sys", "ruwren_web_example"]
package.version = "0.5.0"
[dependencies]
ruwren-sys = { version = "0.5.0", path = "ruwren-sys" }
ruwren-macros = { version = "0.5.0", path = "ruwren-macros", optional = true }
[features]
default = ["derive"]
derive = ["dep:ruwren-macros"]
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "embed_bench"
harness = false