-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (49 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (49 loc) · 1.25 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
51
52
[workspace]
resolver = "2"
members = [
"crates/mbedtls-src",
"crates/rist-sys",
"crates/srt-sys",
"bindings/c",
"bindings/c/core",
"crates/tst-core",
"crates/tst-hls",
"crates/tst-integration",
"crates/tst-interop",
"crates/tst-pipeline",
"bindings/python",
"bindings/jvm",
"crates/tst-rist",
"crates/tst-rtp",
"crates/tst-srt",
"crates/tst-tcp",
"crates/tst-test-helpers",
"crates/tst-udp",
"examples",
]
exclude = ["embedded/baremetal-qemu", "embedded/baremetal-qemu-c"]
[workspace.package]
version = "0.6.0"
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
authors = ["Andrew Klofas <aklofas@gmail.com>"]
repository = "https://github.com/aklofas/ts-transformer"
[workspace.dependencies]
libc = "0.2"
os_socketaddr = "0.2"
bindgen = "0.72"
cbindgen = "0.29"
cc = "1.0"
cmake = "0.1"
pkg-config = "0.3"
thiserror = { version = "2", default-features = false }
secrecy = "0.10"
socket2 = "0.5"
tracing = { version = "0.1", default-features = false, features = ["std"] }
proptest = "1"
criterion = "0.5"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"