-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (28 loc) · 990 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
[package]
name = "autobuild"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
default-run="autobuild"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1"
serde_derive = "1"
toml = "0.8.8"
target-tuples = "0.5.12"
lccc-siphash = "0.1.0"
cfg-match = "0.2.1"
with_builtin_macros = "0.0.3"
hashbrown = { version = "0.14.3", default-features = false, features=["inline-more", "raw"] }
bytemuck = {version = "1.15.0", features=["min_const_generics"]}
dirs = "5.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.152"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.52.0", features = ["Win32_Foundation", "Win32_Security", "Win32_Security_Cryptography", "Win32_System_SystemInformation", "Win32_System", "Win32", "Win32_System_WindowsProgramming", "Win32_System_Threading"] }
[[bin]]
name="autobuild"
path="src/main.rs"
[[bin]]
name="autobuild-wrap-rustc"
path="src/bin/autobuild-wrap-rustc.rs"