Rough first version, implement 'wrap' action
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- Cargo.lock 706 additions, 0 deletionsCargo.lock
- Cargo.toml 15 additions, 0 deletionsCargo.toml
- examples/flit.toml 14 additions, 0 deletionsexamples/flit.toml
- examples/index.html 53 additions, 0 deletionsexamples/index.html
- rustfmt.toml 4 additions, 0 deletionsrustfmt.toml
- src/main.rs 138 additions, 0 deletionssrc/main.rs
.gitignore
0 → 100644
Cargo.lock
0 → 100644
Cargo.toml
0 → 100644
[package] | ||
name = "flit" | ||
version = "0.1.0" | ||
edition = "2021" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
anyhow = "1.0.59" | ||
clap = { version = "3.2.16", features = ["derive"] } | ||
glob = "0.3.0" | ||
lol_html = "0.3.1" | ||
serde = { version = "1.0.140", features = ["derive"] } | ||
thiserror = "1.0.31" | ||
toml = "0.5.9" |
examples/flit.toml
0 → 100644
examples/index.html
0 → 100644
rustfmt.toml
0 → 100644
src/main.rs
0 → 100644
Please register or sign in to comment