fleshing out the core a bit more
This commit is contained in:
parent
e05815e550
commit
c8bb484a53
13 changed files with 497 additions and 9 deletions
55
src/rust/core/Cargo.toml
Normal file
55
src/rust/core/Cargo.toml
Normal file
|
@ -0,0 +1,55 @@
|
|||
[package]
|
||||
name = "core"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = [
|
||||
"Chris Cochrun <chris@cochrun.xyz>"
|
||||
]
|
||||
license = "GPL-3.0"
|
||||
|
||||
# This will instruct Cargo to create a static
|
||||
# library which CMake can link against
|
||||
[lib]
|
||||
crate-type = ["staticlib"]
|
||||
path = "lib.rs"
|
||||
|
||||
# [[bin]]
|
||||
# name = "lumina"
|
||||
# path = "src/rust/main.rs"
|
||||
|
||||
[dependencies]
|
||||
configparser = "3.0.2"
|
||||
serde = "1.0.152"
|
||||
serde_derive = "1.0.152"
|
||||
quote = "1.0.27"
|
||||
# cxx = "1.0.83"
|
||||
# cxx-qt = "0.6.1"
|
||||
# cxx-qt-lib = "0.6.1"
|
||||
# home = "0.5.4"
|
||||
dirs = "5.0.0"
|
||||
# libsqlite3-sys = { version = ">=0.17.2", features = ["bundled"] }
|
||||
youtube_dl = "0.8.0"
|
||||
tar = "0.4.40"
|
||||
zstd = "0.12.4"
|
||||
serde_json = "1.0.104"
|
||||
fastrand = "2.0.0"
|
||||
rfd = { version = "0.12.1", features = ["xdg-portal"], default-features = false }
|
||||
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio", "macros"] }
|
||||
tokio = { version = "1.32.0", features = ["full"] }
|
||||
tracing-subscriber = { version = "0.3.17", features = ["fmt", "std", "chrono", "time", "local-time", "env-filter"] }
|
||||
tracing = "0.1.37"
|
||||
time = { version = "0.3.29", features = ["formatting", "macros"] }
|
||||
obws = "0.13.0"
|
||||
reqwest = "0.11.23"
|
||||
color-eyre = "0.6.3"
|
||||
# ffmpeg-next = "6.0.0"
|
||||
|
||||
# cxx-qt-build generates C++ code from the `#[cxx_qt::bridge]` module
|
||||
# and compiles it together with the Rust static library
|
||||
# [build-dependencies]
|
||||
# cxx-qt-build = { version = "0.6.1", features = [ "link_qt_object_files" ] }
|
||||
# qt-build-utils = "0.6.1"
|
||||
|
||||
# [dependencies.confy]
|
||||
# features = ["yaml_conf"]
|
||||
# default-features = false
|
Loading…
Add table
Add a link
Reference in a new issue