-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (50 loc) · 1.21 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
[package]
name = "Webtransport"
description = "Deno WebTransport FFI library for Deno"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "webtransport"
crate-type = ["cdylib"]
test = false
bench = false
[profile.release]
strip = true
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = true
lto = "fat"
panic = "unwind"
incremental = false
codegen-units = 16
rpath = false
[profile.dev]
opt-level = 0
lto = false
debug = true
debug-assertions = true
overflow-checks = true
panic = "abort"
incremental = true
codegen-units = 1
[dependencies]
once_cell = "=1.18.0"
tokio = { version = "=1.32.0", default-features = false, features = [
"rt",
"rt-multi-thread",
"macros",
] }
# wtransport = "0.1.4" # TODO: Replace this once the fix for arm is merged.
wtransport = { git = "https://github.com/hironichu/wtransport", branch = "master", features = [
"dangerous-configuration",
"quinn",
] }
wtransport-proto = { git = "https://github.com/hironichu/wtransport", branch = "master" }
rcgen = "=0.11.2"
ring = "=0.16.20"
time = "=0.3.29"
anyhow = "=1.0.75"
serde = { version = "=1.0", features = ["derive"] }
serde_json = "1.0.107"