This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
forked from floneum/floneum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
128 lines (121 loc) · 5 KB
/
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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[package]
name = "floneum-workspace"
version = "0.1.0"
edition = "2021"
authors = ["Evan Almloff <evanalmloff@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/floneum/floneum"
[dependencies]
[workspace]
members = [
"models/rbert",
"models/kalosm-llama",
"models/rphi",
"models/rwhisper",
"models/rwuerstchen",
"models/segment-anything-rs",
"models/kalosm-ocr",
"interfaces/kalosm",
"interfaces/kalosm-language",
"interfaces/language-model",
"interfaces/kalosm-sample",
"interfaces/kalosm-vision",
"interfaces/kalosm-sound",
"interfaces/kalosm-streams",
"interfaces/kalosm-learning",
"interfaces/kalosm-learning-macro",
"interfaces/kalosm-parse-macro",
"interfaces/kalosm-common",
"floneum/floneum",
"floneum/plugin",
"floneum/rust_adapter",
"floneum/rust_macro",
"floneum/floneumite",
"floneum/floneum-cli",
"floneum/plugins/generate_text",
"floneum/plugins/generate_structured_text",
"floneum/plugins/format",
"floneum/plugins/search",
"floneum/plugins/embedding",
"floneum/plugins/embedding_db",
"floneum/plugins/add_embedding",
"floneum/plugins/search_engine",
"floneum/plugins/write_to_file",
"floneum/plugins/read_from_file",
"floneum/plugins/if_statement",
"floneum/plugins/contains",
"floneum/plugins/python",
"floneum/plugins/find_node",
"floneum/plugins/click_node",
"floneum/plugins/node_text",
"floneum/plugins/type_in_node",
"floneum/plugins/navigate_to",
"floneum/plugins/find_child_node",
"floneum/plugins/get_article",
"floneum/plugins/read_rss",
"floneum/plugins/split",
"floneum/plugins/join",
"floneum/plugins/slice",
"floneum/plugins/add_to_list",
"floneum/plugins/new_list",
"floneum/plugins/length",
"floneum/plugins/more_than",
"floneum/plugins/less_than",
"floneum/plugins/equals",
"floneum/plugins/and",
"floneum/plugins/or",
"floneum/plugins/not",
"floneum/plugins/add",
"floneum/plugins/subtract",
"floneum/plugins/multiply",
"floneum/plugins/divide",
"floneum/plugins/power",
"floneum/plugins/number",
"floneum/plugins/string",
"floneum/plugins/calculate",
]
[workspace.dependencies]
candle-core = { git = "https://github.com/huggingface/candle", rev = "2b10aaa" }
candle-nn = { git = "https://github.com/huggingface/candle", rev = "2b10aaa" }
candle-transformers = { git = "https://github.com/huggingface/candle", rev = "2b10aaa" }
candle-datasets = { git = "https://github.com/huggingface/candle", rev = "2b10aaa" }
kalosm = { path = "./interfaces/kalosm", version = "0.2.1" }
kalosm-sample = { path = "./interfaces/kalosm-sample", version = "0.2.1" }
kalosm-parse-macro = { path = "./interfaces/kalosm-parse-macro", version = "0.2.1" }
kalosm-common = { path = "./interfaces/kalosm-common", version = "0.1.0" }
kalosm-language-model = { path = "./interfaces/language-model", version = "0.2.1" }
kalosm-streams = { path = "./interfaces/kalosm-streams", version = "0.2.1" }
kalosm-language = { path = "./interfaces/kalosm-language", version = "0.2.1" }
kalosm-sound = { path = "./interfaces/kalosm-sound", version = "0.2.1" }
kalosm-vision = { path = "./interfaces/kalosm-vision", version = "0.2.1" }
kalosm-learning = { path = "./interfaces/kalosm-learning", version = "0.2.1" }
kalosm-learning-macro = { path = "./interfaces/kalosm-learning-macro", version = "0.2.1" }
rphi = { path = "./models/rphi", version = "0.2.1" }
rbert = { path = "./models/rbert", version = "0.2.1" }
kalosm-llama = { path = "./models/kalosm-llama", version = "0.2.1" }
rwhisper = { path = "./models/rwhisper", version = "0.2.1" }
rwuerstchen = { path = "./models/rwuerstchen", version = "0.2.1" }
segment-anything-rs = { path = "./models/segment-anything-rs", version = "0.2.1" }
kalosm-ocr = { path = "./models/kalosm-ocr", version = "0.2.1" }
llm-samplers = "=0.0.7"
parking_lot = "0.12.1"
[patch.crates-io]
dioxus = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
dioxus-core = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
dioxus-core-macro = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
dioxus-rsx = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
dioxus-html = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
dioxus-hooks = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
dioxus-desktop = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
dioxus-signals = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
generational-box = { git = "https://github.com/ealmloff/dioxus/", branch = "create-race-condition-desktop" }
[profile.dist]
inherits = "release"
lto = "thin"
[profile.release]
lto = true
opt-level = 3
debug = false
codegen-units = 1
[profile.dev.package."*"]
opt-level = 3