-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 890 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 890 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
[package]
name = "drillbit"
version = "0.2.0"
edition = "2024"
description = " A plugin installation tool for Roblox"
readme = "README.md"
homepage = "https://github.com/jacktabscode/drillbit"
repository = "https://github.com/jacktabscode/drillbit"
license = "MIT"
[dependencies]
anyhow = "1.0.100"
async-trait = "0.1.89"
blake3 = "1.8.2"
env_logger = "0.11.8"
fs-err = { version = "3.2.2", features = ["tokio"] }
log = "0.4.29"
rbx_cookie = { version = "0.1.5", default-features = false }
relative-path = { version = "2.0.1", features = ["serde"] }
reqwest = { version = "0.13.1", features = ["gzip", "json", "rustls"] }
roblox_install = "1.0.0"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.49.0", features = ["fs", "macros", "rt-multi-thread"] }
toml = "0.9.10"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"