forked from erlkonig-ai/faculties
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 972 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 972 Bytes
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
[package]
name = "faculties"
version = "0.11.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Shared schemas, helpers, and widgets for triblespace-backed faculties."
repository = "https://github.com/triblespace/faculties"
[lib]
path = "src/lib.rs"
[features]
default = []
# GORBIE-backed viewers for faculty branches. Enables the `widgets` module.
widgets = [
"dep:GORBIE",
"dep:egui",
"dep:cubecl",
"dep:ed25519-dalek",
"dep:rand_core06",
"dep:hifitime",
]
[dependencies]
triblespace = "0.36"
GORBIE = { version = "0.10", default-features = false, features = ["typst", "markdown"], optional = true }
egui = { version = "0.34", optional = true }
cubecl = { version = "0.9.0", default-features = false, features = ["wgpu", "std"], optional = true }
ed25519-dalek = { version = "2.1.1", optional = true }
rand_core06 = { package = "rand_core", version = "0.6.4", optional = true }
hifitime = { version = "4.1.2", optional = true }