-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
40 lines (35 loc) · 1.05 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
[package]
edition = "2021"
name = "ngrok-python"
version = "1.4.0"
description = "The ngrok Agent SDK for Python"
[lib]
name = "ngrok"
crate-type = ["cdylib"]
[dependencies]
async-trait = "0.1.59"
bytes = "1.3.0"
futures = "0.3.26"
lazy_static = "1.4.0"
log = "0.4"
# pin mio until all dependencies are also on windows-sys 0.48
# https://github.com/microsoft/windows-rs/issues/2410#issuecomment-1490802715
mio = { version = "=0.8.6" }
ngrok = { version = "=0.14.0-pre.14" }
pyo3 = { version = "0.18.1", features = ["abi3", "abi3-py37", "extension-module", "multiple-pymethods"]}
pyo3-asyncio = { version = "0.18.0", features = ["attributes", "tokio-runtime"] }
pyo3-log = { version = "0.8.1" }
parking_lot = "0.12.1"
regex = "1.9.5"
rustls = "0.22.2"
rustls-pemfile = "2.0.0"
tokio = { version = "1.23.0", features = ["sync"] }
tracing = { version = "0.1.37", features = ["log", "log-always"] }
url = "2.4.0"
[build-dependencies]
prost-build = "0.11.3"
pyo3-build-config = "0.17.3"
[profile.release]
lto = true
[package.metadata.cargo-udeps.ignore]
normal = ["mio"]