-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (51 loc) · 1.04 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "emmett-core"
version = "1.1.0"
description = "Emmett framework core libraries"
authors = ["Giovanni Barillari <[email protected]>"]
license = "BSD-3-Clause"
edition = "2021"
keywords = ["web"]
readme = "README.md"
homepage = "https://github.com/emmett-framework/core"
repository = "https://github.com/emmett-framework/core"
include = [
"/Cargo.toml",
"/pyproject.toml",
"/LICENSE",
"/README.md",
"/src",
"/emmett_core",
"/tests",
"!__pycache__",
"!.pytest_cache",
"!.ruff_cache",
"!*.so",
]
[lib]
name = "_emmett_core"
crate-type = ["cdylib"]
[dependencies]
aes = "=0.8"
anyhow = "=1.0"
buf-read-ext = "=0.4"
cfb8 = "=0.8"
cfb-mode = "=0.8"
ctr = "=0.9"
encoding = "=0.2"
http = "=1.2"
httparse = "=1.9"
mime = "=0.3"
pyo3 = { version = "=0.23", features = ["anyhow", "extension-module", "generate-import-lib"] }
regex = "=1.11"
ring = "=0.17"
tempfile = "=3.14"
textnonce = "=1.0"
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = "fat"
opt-level = 3
panic = "abort"
strip = true