-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (58 loc) · 2.42 KB
/
Cargo.toml
File metadata and controls
63 lines (58 loc) · 2.42 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
[workspace]
resolver = "2"
members = [
"starstream-cli",
"starstream-compiler",
"starstream-interpreter",
"starstream-language-server",
"starstream-language-server-web",
"starstream-sandbox-web",
"starstream-to-wasm",
"starstream-types",
"interleaving/starstream-interleaving-proof",
"interleaving/starstream-interleaving-spec",
"interleaving/starstream-runtime",
"ark-poseidon2",
"ark-goldilocks"
]
exclude = ["old"]
[workspace.package]
version = "0.0.0"
authors = []
edition = "2024"
rust-version = "1.89.0"
repository = "https://github.com/LFDT-Nightstream/Starstream"
license = "MIT/Apache-2.0"
[workspace.dependencies]
ariadne = "0.5.1"
chumsky = "0.11.1"
indoc = "2.0"
insta = "1.43"
miette = "7.6.0"
serde = "1.0.219"
starstream-compiler = { path = "starstream-compiler" }
starstream-language-server = { path = "starstream-language-server" }
starstream-to-wasm = { path = "starstream-to-wasm" }
starstream-types = { path = "starstream-types" }
thiserror = "2.0.17"
tower-lsp-server = { version = "0.22.1", default-features = false, features = [
"runtime-agnostic",
] }
wasm-encoder = "0.240.0"
wasmprinter = "0.240.0"
wit-component = "0.240.0"
neo-fold = { git = "https://github.com/LFDT-Nightstream/Nightstream.git", rev = "8b32cc8fa7cbb3e28fff34a6f6d0160ee7bc61fb" }
neo-math = { git = "https://github.com/LFDT-Nightstream/Nightstream.git", rev = "8b32cc8fa7cbb3e28fff34a6f6d0160ee7bc61fb" }
neo-ccs = { git = "https://github.com/LFDT-Nightstream/Nightstream.git", rev = "8b32cc8fa7cbb3e28fff34a6f6d0160ee7bc61fb" }
neo-ajtai = { git = "https://github.com/LFDT-Nightstream/Nightstream.git", rev = "8b32cc8fa7cbb3e28fff34a6f6d0160ee7bc61fb" }
neo-params = { git = "https://github.com/LFDT-Nightstream/Nightstream.git", rev = "8b32cc8fa7cbb3e28fff34a6f6d0160ee7bc61fb" }
neo-vm-trace = { git = "https://github.com/LFDT-Nightstream/Nightstream.git", rev = "8b32cc8fa7cbb3e28fff34a6f6d0160ee7bc61fb" }
neo-memory = { git = "https://github.com/LFDT-Nightstream/Nightstream.git", rev = "8b32cc8fa7cbb3e28fff34a6f6d0160ee7bc61fb" }
[profile.dev.package]
insta.opt-level = 3
[patch.crates-io]
ark-relations = { git = "https://github.com/arkworks-rs/snark/" }
ark-snark = { git = "https://github.com/arkworks-rs/snark/" }
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra"}
ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives"}