-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 896 Bytes
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 896 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 = "chunkify"
version = "0.6.48"
readme = "README.md"
edition = "2024"
authors = ["root@ltpp.vip"]
license = "MIT"
description = """A simple and efficient chunking library for Rust."""
keywords = ["http", "file", "chunk", "upload", "web"]
repository = "https://github.com/crates-dev/chunkify.git"
categories = ["network-programming", "web-programming"]
exclude = [
"target",
"Cargo.lock",
"sh",
".github",
"logs",
"uploads",
"**/*.log",
]
[dependencies]
dashmap = "6.1.0"
once_cell = "1.21.3"
twox-hash = "2.1.2"
file-operation = "0.8.19"
tokio = { version = "1.50.0", features = ["full"] }
[profile.dev]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"
[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"