-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.06 KB
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
[package]
name = "logly"
version = "0.1.6"
description = "Blazingly Fast Rust-Powered Python Logging Utility with Advanced Features"
edition = "2024"
license = "MIT"
readme = "README.md"
[lib]
name = "_logly"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.26.0", features = ["extension-module"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["fmt", "ansi", "env-filter"] }
tracing-appender = "0.2.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
chrono = { version = "0.4.42", features = ["serde"] }
parking_lot = "0.12.5"
crossbeam-channel = "0.5.15"
ahash = "0.8.12"
smallvec = "1.15.1"
flate2 = "1.1.2"
zstd = "0.13.3"
byte-unit = "5.1.6"
arc-swap = "1.7.1"
once_cell = "1.21.3"
regex = "1.11.3"
rayon = "1.11.0"
ureq = { version = "3.1.2", default-features = false, features = ["rustls"] }
[features]
default = []
[dev-dependencies]
tempfile = "3.23.0"
just = "1.43.0"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[profile.dev]
opt-level = 0
debug = true