Skip to content

Commit

Permalink
Major restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
davemackintosh committed May 20, 2024
1 parent 7cab165 commit 8abdd39
Show file tree
Hide file tree
Showing 55 changed files with 335 additions and 11,151 deletions.
42 changes: 33 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,33 @@
[workspace]
resolver = "2"

members = [
"packages/parser",
"packages/elpc",
"packages/apple-compiler",
"packages/android-compiler/rust",
]
[package]
name = "elp"
version = "0.1.0"
edition = "2021"

[target.'cfg(windows)'.dependencies]
windows = { version = "0.56.0", features = ["Win32_Graphics_Gdi", "Win32_System_LibraryLoader", "Win32_UI_WindowsAndMessaging"]}

[target.'cfg(apple)'.dependencies]
block = "0.1.6"
objc = { version = "0.2.7", features = ["exception", "objc_exception", "verify_message"] }

[target.'cfg(android)'.dependencies]
jni = "0.21.1"

[build-dependencies]
[target.'cfg(apple)'.build-dependencies]
regex = "1.10.3"
toml = "0.8.10"
glob = "0.3.1"
bindgen = "0.69.4"

[features]
default = ["parser", "elpc"]
parser = []
elpc = []
apple-compiler = ["parser", "elpc"]
android-compiler = ["parser", "elpc"]
windows-compiler = ["parser", "elpc"]
[dependencies]
pretty_assertions = "1.4.0"
async-trait = "0.1.80"
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { App, Window } from "ellipsis"
import { App, Window } from "elp"
import { Home } from "$screens/home"
import Styles from "$app/styles"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ App {
Text {
.fontFamily = "Patua One"
}

// vim: ft=swift

0 comments on commit 8abdd39

Please sign in to comment.