Skip to content

Commit 5de095b

Browse files
committed
?
0 parents  commit 5de095b

File tree

9 files changed

+533
-0
lines changed

9 files changed

+533
-0
lines changed

.cargo/config.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[alias]
2+
m = "make"
3+
i = ["install", "--path", "."]
4+
5+
[install]
6+
root = "."
7+
8+
[build]
9+
target = "wasm32-wasi"

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/target/
2+
3+
**/*.rs.bk
4+
5+
/bin/
6+
7+
.crates.toml
8+
.crates2.json

Cargo.lock

+347
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
edition = "2021"
3+
name = "lapcord"
4+
version = "0.0.0"
5+
resolver = "2"
6+
7+
[target.'cfg(target_os = "wasi")'.dependencies]
8+
anyhow = "1.0"
9+
serde_json = "1.0"
10+
serde = { version = "1.0", features = ["derive"] }
11+
lapce-plugin = { git = "https://github.com/lapce/lapce-plugin-rust.git" }
12+
13+
[profile.release]
14+
opt-level = 3
15+
lto = true
16+
codegen-units = 1
17+
strip = true

0 commit comments

Comments
 (0)