-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
62 lines (57 loc) · 1.77 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
[package]
name = "tmc"
version = "1.1.2"
authors = [
"University of Helsinki <mooc@cs.helsinki.fi>",
"HoolaBoola <jaime.heikkiladias@helsinki.fi>",
"Robustic <juha.malinen@helsinki.fi>",
"ShootingStar91 <arttu.kangas@helsinki.fi>",
"Nooblue <joni.sikio@helsinki.fi>",
"Daniel Martinez <daniel.x.martinez@helsinki.fi>",
]
edition = "2021"
description = "Client for downloading, testing and submitting exercises through the TestMyCode and MOOC.fi systems."
license = "Apache-2.0"
rust-version = "1.70.0"
[dependencies]
anyhow = { version = "1.0.56", features = ["backtrace"] }
bytes = "1.4.0"
clap = { version = "4.0.7", features = ["derive"] }
clap_complete = "4.0.2"
crossterm = "0.28.1"
flexi_logger = "0.29.0"
indicatif = "0.17.1"
log = "0.4.17"
ratatui = { version = "0.28.1", default-features = false, features = [
'crossterm',
] }
reqwest = { version = "0.12.7", default-features = false, features = [
"blocking",
"json",
"rustls-tls",
"multipart",
] }
rpassword = "7.0.0"
serde = "1.0.136"
serde_json = "1.0.79"
termcolor = "1.1.3"
terminal_size = "0.3.0"
tmc-langs = { git = "https://github.com/rage/tmc-langs-rust", tag = "0.36.3" }
toml = "0.8.19"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.2.2"
uuid = { version = "1.4.0", features = ["v4"] }
[dev-dependencies]
assert_cmd = "2.0.4"
mockito = "1.1.0"
predicates = "3.0.3"
tempfile = "3.6.0"
[build-dependencies]
clap = { version = "4.0.7", features = ["derive"] }
clap_complete = "4.0.2"
# [patch."https://github.com/rage/tmc-langs-rust"]
# tmc-langs = { path = "../tmc-langs-rust/crates/tmc-langs" }
# [patch.'https://github.com/rage/secret-project-331.git']
# mooc-langs-api = { path = "../secret-project-331/services/headless-lms/langs-api" }