-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from rusty-ecma/remove-src-text
Remove src text
- Loading branch information
Showing
18 changed files
with
3,190 additions
and
1,945 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Rust | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: fmt check | ||
run: cargo fmt --check | ||
- name: clippy | ||
run: cargo clippy -- -Dwarnings | ||
- name: Build | ||
run: cargo build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,17 @@ | ||
[package] | ||
name = "resast" | ||
version = "0.6.0-alpha.3" | ||
version = "0.6.0-alpha.5" | ||
authors = ["rfm <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
description = "Rusty-ECMAScript Abstract Syntax Tree" | ||
repository = "https://github.com/rusty-ecma/resast" | ||
license = "MIT" | ||
keywords = ["JavaScript", "parsing", "JS", "ES", "ECMA"] | ||
categories = ["parsing", "text-processing", "web-programming"] | ||
|
||
[dependencies] | ||
serde = { version = "1", optional = true } | ||
serde_derive = { version = "1", optional = true } | ||
|
||
[dev-dependencies] | ||
serde_json = "1" | ||
ressa = "0.7.0-beta-6" | ||
pretty_env_logger = "0.3" | ||
serde = { version = "1", optional = true, features = ["derive"] } | ||
|
||
[features] | ||
default = [] | ||
serialization = ["serde", "serde_derive"] | ||
esprima = ["serialization"] | ||
serde = ["dep:serde"] |
Oops, something went wrong.