forked from narrowlink/ipstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1.01 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
[package]
authors = ['Narrowlink <[email protected]>', 'Nullchinchilla <[email protected]>']
description = 'Asynchronous lightweight userspace implementation of TCP/IP stack for transparent proxies'
name = "ipstack-geph"
version = "0.2.8"
edition = "2021"
license = "Apache-2.0"
repository = 'https://github.com/geph-official/ipstack'
# homepage = 'https://github.com/narrowlink/ipstack'
readme = "README.md"
[dependencies]
ahash = "0.8"
etherparse = { version = "0.14", default-features = false, features = ["std"] }
thiserror = { version = "1.0", default-features = false }
log = { version = "0.4", default-features = false }
rand = { version = "0.8.5", default-features = false, features = [
"std",
"std_rng",
] }
anyhow = "1.0.83"
bytes = "1.6.0"
async-channel = "2.3.0"
async-executor = "1.11.0"
futures-lite = "2.3.0"
parking_lot = "0.12.2"
async-io = "2.3.2"
pollster = "0.3.0"
smol-timeout = "0.6.0"
moka = {version="0.12.8", features=["sync"]}
smolscale = "0.4.11"
[dev-dependencies]
criterion="0.5"