-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 842 Bytes
/
Copy pathCargo.toml
File metadata and controls
45 lines (37 loc) · 842 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
43
44
45
[package]
name = "your_project_name"
version = "0.1.0"
authors = ["Your Name <[email protected]>"]
edition = "2018"
[dependencies]
c2rust-asm-casts = "0.18.0"
c2rust-bitfields = "0.18.0"
libc = "0.2"
# Add your dependencies here
# For example:
# rand = "0.8.3"
[dev-dependencies]
# Add development dependencies here
# For example:
# rand = "0.8.3"
[build-dependencies]
# Add build dependencies here
# For example:
# build-essential = "0.1.0"
# Additional configuration options can go here
# For example, you can specify features or default features
# Or enable certain Cargo features:
# [features]
# default = ["feature1", "feature2"]
[lib]
name = "your_library_name"
path = "sasori.rs"
[[bin]]
name = "sasori"
path = "sasori.rs"
[[bin]]
name = "servertor"
path = "servertor.rs"
[[bin]]
name = "lighthide"
path = "lighthide.rs"