-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (44 loc) · 964 Bytes
/
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
# Cargo.toml
[package]
name = "noirlings"
version = "0.1.0"
edition = "2021"
authors = ["Satyam Bansal<satyambnsal@gmail.com>"]
[dependencies]
argh = "0.1"
indicatif = "0.16"
console = "0.15"
notify = "4.0"
toml = "0.5"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
home = "0.5.3"
glob = "0.3.0"
anyhow = "1.0.66"
colored = "2"
[[bin]]
name = "noirlings"
path = "src/main.rs"
# Project structure:
#
# noirlings/
# ├── Cargo.toml
# ├── src/
# │ ├── main.rs
# │ ├── exercise.rs
# │ ├── nargo_utils.rs
# │ ├── run.rs
# │ ├── ui.rs
# │ ├── utils.rs
# │ └── verify.rs
# ├── exercises/
# │ ├── variables/
# │ │ ├── vars1.nr
# │ │ └── vars2.nr
# │ ├── functions/
# │ │ ├── fn1.nr
# │ │ └── fn2.nr
# │ └── ...
# ├── info.toml
# └── README.md