-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 1.04 KB
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
33
34
[workspace]
members = [
"crates/pattern-core",
"crates/gram-codec",
"crates/pato",
"adapters/wasm/pattern-wasm",
"benches",
]
exclude = ["external/tree-sitter-gram"]
resolver = "2"
[workspace.package]
version = "0.4.2"
edition = "2021"
rust-version = "1.70.0"
authors = ["gram-data"]
license = "BSD-3-Clause"
description = "Rust port of gram-hs pattern data structure and graph views"
repository = "https://github.com/relateby/pattern-rs"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
proptest = "1.0"
insta = "1.0"
criterion = { version = "0.5", default-features = false, features = ["html_reports"] }
clap = { version = "4", features = ["derive"] }
strsim = "0.11"
# Note: Previously had `[profile.release]` with opt-level="z" and lto=true,
# but this affected ALL workspace crates (not just WASM). Removed to avoid
# performance degradation in non-WASM binaries. For WASM size optimization,
# use wasm-pack which applies appropriate settings: `wasm-pack build --release`