-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
48 lines (41 loc) · 1.61 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
[workspace]
members = [
# core libraries
"crates/tmc-*",
# language plugins
"crates/plugins/*",
# bindings to other languages
"crates/bindings/*",
# test helpers
"crates/helpers/*",
]
resolver = "2"
[workspace.package]
authors = [
"University of Helsinki <[email protected]>",
"Daniel Martinez <[email protected]>",
]
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.70.0"
version = "0.36.4"
[workspace.dependencies]
mooc-langs-api = { git = "https://github.com/rage/secret-project-331.git", rev = "9fb5f894c72932e77dafa6d0f00df7a8abdfa84c" }
tmc-langs = { path = "crates/tmc-langs" }
tmc-langs-csharp = { path = "crates/plugins/csharp" }
tmc-langs-framework = { path = "crates/tmc-langs-framework" }
tmc-langs-java = { path = "crates/plugins/java" }
tmc-langs-make = { path = "crates/plugins/make" }
tmc-langs-notests = { path = "crates/plugins/notests" }
tmc-langs-plugins = { path = "crates/tmc-langs-plugins" }
tmc-langs-python3 = { path = "crates/plugins/python3" }
tmc-langs-r = { path = "crates/plugins/r" }
tmc-langs-util = { path = "crates/tmc-langs-util" }
tmc-mooc-client = { path = "crates/tmc-mooc-client" }
tmc-server-mock = { path = "crates/helpers/tmc-server-mock" }
tmc-testmycode-client = { path = "crates/tmc-testmycode-client" }
ts-rs = { git = "https://github.com/Heliozoa/ts-rs.git", rev = "16362e1936b328f92cff3eedfd23f05c674aa336" }
# [patch.'https://github.com/Heliozoa/ts-rs.git']
# ts-rs = { path = "../ts-rs/ts-rs" }
# [patch.'https://github.com/rage/secret-project-331.git']
# mooc-langs-api = { path = "../secret-project-331/services/headless-lms/langs-api" }