-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (80 loc) · 2.21 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (80 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[workspace]
resolver = "3"
members = [
"crates/nuif-core",
"crates/nuif-protocol",
"crates/nuif-cli",
"crates/nuif-layout",
"crates/nuif-render",
"crates/nuif-text",
"crates/nuif-codec",
"crates/nuif-package",
"crates/nuif-media",
"crates/nuif-font",
"crates/nuif-reconstruct",
"crates/nuif-capture",
"crates/nuif-query",
"crates/nuif-api",
"crates/nuif-ffi",
"crates/nuif-testing",
"crates/nuif-adapter",
"crates/nuif-dtcg",
"crates/nuif-html",
"crates/nuif-svg",
"crates/nuif-penpot",
"crates/nuif-figma",
"crates/nuif-canva",
"crates/nuif-react",
"crates/nuif-svelte",
"crates/nuif-wasm",
"crates/nuif-mcp",
"crates/nuif-collab",
"crates/nuif-behavior",
"apps/editor",
"conformance",
"xtask",
]
[workspace.package]
edition = "2024"
license = "Apache-2.0 OR MIT"
rust-version = "1.96"
repository = "https://github.com/refpath/nuif"
[workspace.dependencies]
base16ct = { version = "=1.0.0", features = ["alloc"] }
base64 = "=0.23.1"
cbindgen = "=0.29.4"
ciborium = "0.2.2"
criterion = { version = "0.8.2", default-features = false }
font-test-data = "=0.9.1"
harfrust = "=0.13.3"
json5 = "1.3.1"
nv-flip = "=0.1.2"
png = "0.18.0"
rmcp = { version = "=3.2.0", default-features = false, features = ["macros", "server", "transport-io"] }
roxmltree = "=0.21.1"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = { version = "1.0", features = ["raw_value"] }
serde-saphyr = { version = "=1.2.0", default-features = false, features = ["deserialize"] }
sha2 = { version = "=0.11.0", default-features = false }
skrifa = "=0.46.2"
stats_alloc = "0.1.10"
taffy = "=0.14.0"
tempfile = "=3.27.0"
thiserror = "2.0"
tree-sitter = "=0.27.0"
tree-sitter-css = "=0.25.0"
tree-sitter-html = "=0.23.2"
tree-sitter-javascript = "=0.25.0"
tree-sitter-svelte-next = "=0.1.1"
tokio = { version = "=1.53.1", features = ["macros", "rt"] }
tungstenite = "=0.30.0"
wasm-bindgen = "=0.2.128"
zeno = "=0.3.3"
zune-png = { version = "=0.5.2", default-features = false, features = ["std"] }
zip = { version = "=8.6.0", default-features = false, features = ["deflate-flate2-zlib-rs"] }
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"