mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-04 08:38:34 +00:00
30 lines
977 B
TOML
30 lines
977 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "affine_media_capture"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
mp3lame-encoder = { workspace = true, features = ["std"] }
|
|
napi = { workspace = true, features = ["napi4"] }
|
|
napi-derive = { workspace = true, features = ["type-def"] }
|
|
rubato = { workspace = true }
|
|
symphonia = { workspace = true, features = ["all", "opt-simd"] }
|
|
thiserror = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
block2 = { workspace = true }
|
|
core-foundation = { workspace = true, features = ["with-uuid"] }
|
|
coreaudio-rs = { workspace = true }
|
|
dispatch2 = { workspace = true }
|
|
libc = { workspace = true }
|
|
objc2 = { workspace = true }
|
|
objc2-foundation = { workspace = true }
|
|
screencapturekit = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|