-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1018 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
35
36
[package]
name = "heliport"
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "heliport"
# use lib to be able to compile library from other rust crates
# use cdylib to enable maturin linkage
crate-type = ["lib", "cdylib"]
[dependencies]
bitcode = "0.6"
regex = "1.10"
unicode-blocks = "0.1.8"
shingles = "0.1"
ordered-float = "4.2"
log = { version = "0.4" }
env_logger = "0.10"
strum = { version = "0.25", features = ["derive"] }
strum_macros = "0.25"
wyhash2 = "0.2.1"
pyo3 = { version = "0.22", features = ["gil-refs"] }
target = "2.1.0"
tempfile = "3"
reqwest = { version = "0.12", features = ["stream"] }
tokio = { version = "1", features = ["io-util", "rt-multi-thread", "signal", "macros"] }
futures-util = "0.3"
[dev-dependencies]
test-log = "0.2.15"
[features]
# Put log features in default, to allow crates using heli as a library, disable them
default = ["log/max_level_debug", "log/release_max_level_debug"]