-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (33 loc) · 848 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
37
[workspace]
members = [
"array-util",
"bit-writer",
"encoder",
"ffi",
"ffmpeg-src-macro",
"izip",
"lpc",
]
[package]
name = "raash"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["rlib", "staticlib"]
[dependencies]
array-util = { version = "0.1.0", path = "array-util" }
arrayvec = "0.7.4"
bit-writer = { version = "0.1.0", path = "bit-writer" }
derive_more = { version = "1.0.0-beta", features = ["add", "add_assign", "sum"] }
encoder = { version = "0.1.0", path = "encoder" }
ffi = { version = "0.1.0", path = "ffi" }
ffmpeg-src-macro = { version = "0.1.0", path = "ffmpeg-src-macro" }
ilog = "1.0.1"
itertools = "0.13"
izip = { version = "0.1.0", path = "izip" }
libc = "0.2.150"
lpc = { version = "0.1.0", path = "lpc" }
once_cell = "1.18.0"
reductor = "0.0.12"
[profile.release]
debug-assertions = true