Skip to content

Commit

Permalink
Fix leadc
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Feb 4, 2025
1 parent bd4447f commit 7e4c623
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 4 deletions.
34 changes: 34 additions & 0 deletions leadc/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
rustflags = []

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"

[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-musl-gcc"


[target.mips-unknown-linux-musl]
linker = "mips-linux-musl-gcc"


[target.mips64-unknown-linux-muslabi64]
linker = "mips64-linux-musl-gcc"


[target.mips64el-unknown-linux-muslabi64]
linker = "mips64el-linux-musl-gcc"


[target.mipsel-unknown-linux-musl]
linker = "mipsel-linux-musl-gcc"


[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"


[target.x86_64-pc-solaris]
linker = "x86_64-pc-solaris2.11-gcc"

[unstable]
build-std = ["core", "std", "proc_macro", "alloc"]
8 changes: 8 additions & 0 deletions leadc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,11 @@ name = "leadc"
path = "./src/main.rs"

[dependencies]


[target.'cfg(windows)'.build-dependencies]
tauri-winres = "0.3"

[package.metadata.tauri-winres]
OriginalFilename = "leadman.exe"
LegalCopyright = "Copyright © 2024 - The AHQ Softwares' Lead lang Team"
Binary file added leadc/icon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions leadc/rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tab_spaces = 2
6 changes: 3 additions & 3 deletions packages/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
indoc = "2.0.5"
lead_lang_interpreter = "0.0.0-dev-lead-lang"
indoc = "2"
lead_lang_interpreter = { path = "../../interpreter" }
lead_lang_macros = { path = "../../macros" }
serde_json = "1.0.137"
serde_json = "1"

[patch.crates-io]
lead_lang_interpreter = { path = "../../interpreter" }
Expand Down
2 changes: 1 addition & 1 deletion packages/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
inquire = "0.7.4"
inquire = "0.7"
lead_lang_interpreter = { path = "../../interpreter" }
lead_lang_macros = { path = "../../macros" }

Expand Down

0 comments on commit 7e4c623

Please sign in to comment.