-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (30 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
42 lines (30 loc) · 771 Bytes
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
[package]
name = "python_vs_rust"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[[bin]]
name = "hello_world"
path = "docs/src/hello_world/hello_world.rs"
[[bin]]
name = "print_out_1"
path = "docs/src/printing/printing_stdout_1.rs"
[[bin]]
name = "print_err_1"
path = "docs/src/printing/printing_stderr_1.rs"
[[bin]]
name = "formatting_1"
path = "docs/src/printing/formatting_1.rs"
[[bin]]
name = "boolean_1"
path = "docs/src/types/boolean/bool_1.rs"
[[bin]]
name = "boolean_2"
path = "docs/src/types/boolean/bool_2.rs"
[[bin]]
name = "boolean_3"
path = "docs/src/types/boolean/bool_size.rs"
[[bin]]
name = "sizes_1"
path = "docs/src/types/_sizes/sizes_1.rs"