-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (96 loc) · 4.17 KB
/
Copy pathCargo.toml
File metadata and controls
98 lines (96 loc) · 4.17 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[workspace]
members = [
"ternlang-root/ternlang-ruvector",
"ternlang-root/ternlang-engram",
"ternlang-root/compiler/legacy_shim/ternlang-core",
"ternlang-root/compiler/legacy_shim/ternlang-codegen",
"ternlang-root/compiler/legacy_shim/ternlang-cli",
"ternlang-root/compiler/legacy_shim/ternlang-runtime",
"ternlang-root/ternlang-ml",
"ternlang-root/ternlang-gate",
"ternlang-root/ternlang-mkl",
"ternlang-root/ternlang-hft",
"ternlang-root/ternlang-ros2",
"ternlang-root/ternlang-edu",
"ternlang-root/ternlang-harmony",
"ternlang-root/ternlang-driver",
"ternlang-root/ternlang-moe",
"ternlang-root/ternlang-hdl",
"ternlang-root/ternlang-lsp",
"ternlang-root/ternlang-mcp",
"ternlang-root/ternlang-compat",
"ternlang-root/ternlang-compress",
"ternlang-root/ternlang-net",
"ternlang-root/ternlang-posix",
"ternlang-root/ternlang-astro",
"ternlang-root/ternlang-qutrit",
"ternlang-root/ternlang-auth",
"ternlang-root/ternlang-bci",
"ternlang-root/ternlang-bio",
"ternlang-root/ternlang-bridge",
"ternlang-root/ternlang-cad",
"ternlang-root/ternlang-consensus",
"ternlang-root/ternlang-contract",
"ternlang-root/ternlang-crypto",
"ternlang-root/ternlang-fs",
"ternlang-root/ternlang-gfx",
"ternlang-root/ternlang-grid",
"ternlang-root/ternlang-sec",
"ternlang-root/ternlang-sql",
"ternlang-root/ternlang-swarm",
"ternlang-root/ternlang-time",
"ternlang-root/ternlang-translator",
"ternlang-root/ternlang-tson",
"ternlang-root/ternlang-ttp",
"ternlang-root/ternlang-ui",
"ternlang-root/ternlang-wasm",
"ternlang-root/ternlang-api",
"ternlang-root/ternlang-test",
"ternlang-root/ternpkg",
"ternlang-root/ternpkg-registry",
"albert-moe-13/reproducibility_verifier",
"albert-moe-13/moe-test",
"albert-moe-13/moe-compute",
"albert-moe-13/moe-llm-core",
"albert-moe-13/moe-data",
"albert-moe-13/crates/moe-core",
"albert-moe-13/crates/moe-ddel",
"albert-moe-13/crates/moe-platform",
"albert-moe-13/crates/moe-runtime",
"albert-moe-13/crates/moe-sdk",
"albert-moe-13/crates/moe-plugin-sdk",
"albert-moe-13/crates/moe-uril",
"albert-moe-13/crates/moe-validation-suite",
]
resolver = "2"
[workspace.package]
version = "2.0.0"
edition = "2024"
license = "LGPL-3.0-or-later"
repository = "https://github.com/eriirfos-eng/ternary-intelligence-stack"
homepage = "https://ternlang.com"
authors = [
"Simeon Kepp <s.kepp@ternlang.com>",
"Nikoletta Csonka <csonikoletta@ternlang.com>",
"Zabih Karimi <z.karimi@ternlang.com>",
"RFI-IRFOS <licensing@ternlang.com>"
]
keywords = ["ternary", "trit", "compiler", "ml", "rust"]
categories = ["compilers", "science", "development-tools"]
[workspace.dependencies]
ternlang-core = { path = "ternlang-root/compiler/legacy_shim/ternlang-core", version = "2.0.0" }
ternlang-codegen = { path = "ternlang-root/compiler/legacy_shim/ternlang-codegen", version = "2.0.0" }
ternlang-runtime = { path = "ternlang-root/compiler/legacy_shim/ternlang-runtime", version = "2.0.0" }
ternlang-cli = { path = "ternlang-root/compiler/legacy_shim/ternlang-cli", version = "2.0.0" }
ternlang-ml = { path = "ternlang-root/ternlang-ml", version = "2.0.0" }
ternlang-moe = { path = "ternlang-root/ternlang-moe", version = "2.0.0" }
ternlang-hdl = { path = "ternlang-root/ternlang-hdl", version = "2.0.0" }
ternlang-lsp = { path = "ternlang-root/ternlang-lsp", version = "2.0.0" }
ternlang-mcp = { path = "ternlang-root/ternlang-mcp", version = "2.0.0" }
ternpkg = { path = "ternlang-root/ternpkg", version = "2.0.0" }
ternlang-compat = { path = "ternlang-root/ternlang-compat", version = "2.0.0" }
ternlang-test = { path = "ternlang-root/ternlang-test", version = "2.0.0" }
ternlang-api = { path = "ternlang-root/ternlang-api", version = "2.0.0" }
ternlang-compress = { path = "ternlang-root/ternlang-compress", version = "2.0.0" }
ternlang-ruvector = { path = "ternlang-root/ternlang-ruvector", version = "2.0.0" }
ternlang-engram = { path = "ternlang-root/ternlang-engram", version = "2.0.0" }