mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-03 18:29:09 +00:00
Initial commit laying out the structure
This commit is contained in:
commit
c6553d007e
11 changed files with 86 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
Cargo.lock
|
8
Cargo.toml
Normal file
8
Cargo.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[workspace]
|
||||
members = [
|
||||
'sixtyfps_runtime/corelib',
|
||||
'sixtyfps_runtime/rendering_backends/gl',
|
||||
'sixtyfps_compiler',
|
||||
'api/sixtyfps-rs',
|
||||
]
|
||||
|
12
api/sixtyfps-rs/Cargo.toml
Normal file
12
api/sixtyfps-rs/Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
[package]
|
||||
name = "sixtyfps-rs"
|
||||
version = "0.1.0"
|
||||
authors = ["Simon Hausmann <hausmann@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
7
api/sixtyfps-rs/lib.rs
Normal file
7
api/sixtyfps-rs/lib.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
1
rustfmt.toml
Normal file
1
rustfmt.toml
Normal file
|
@ -0,0 +1 @@
|
|||
use_small_heuristics = "Max"
|
12
sixtyfps_compiler/Cargo.toml
Normal file
12
sixtyfps_compiler/Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
[package]
|
||||
name = "sixtyfps_compiler"
|
||||
version = "0.1.0"
|
||||
authors = ["Simon Hausmann <hausmann@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
7
sixtyfps_compiler/lib.rs
Normal file
7
sixtyfps_compiler/lib.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
12
sixtyfps_runtime/corelib/Cargo.toml
Normal file
12
sixtyfps_runtime/corelib/Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
[package]
|
||||
name = "corelib"
|
||||
version = "0.1.0"
|
||||
authors = ["Simon Hausmann <hausmann@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
7
sixtyfps_runtime/corelib/lib.rs
Normal file
7
sixtyfps_runtime/corelib/lib.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
12
sixtyfps_runtime/rendering_backends/gl/Cargo.toml
Normal file
12
sixtyfps_runtime/rendering_backends/gl/Cargo.toml
Normal file
|
@ -0,0 +1,12 @@
|
|||
[package]
|
||||
name = "gl"
|
||||
version = "0.1.0"
|
||||
authors = ["Simon Hausmann <hausmann@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
7
sixtyfps_runtime/rendering_backends/gl/lib.rs
Normal file
7
sixtyfps_runtime/rendering_backends/gl/lib.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
assert_eq!(2 + 2, 4);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue