rearranging rust files and updating crates
This commit is contained in:
parent
9644631f7c
commit
b76f027455
7 changed files with 1097 additions and 0 deletions
25
Cargo.toml
Normal file
25
Cargo.toml
Normal file
|
@ -0,0 +1,25 @@
|
|||
[package]
|
||||
name = "libre-presenter"
|
||||
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 = "src/rust/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
cxx = "1.0.83"
|
||||
cxx-qt = "0.4.1"
|
||||
cxx-qt-lib = "0.4.1"
|
||||
|
||||
# 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 = "0.4.1"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue