Skip to content

Commit

Permalink
Merge pull request #11 from rusty-ecma/remove-src-text
Browse files Browse the repository at this point in the history
Remove src text
  • Loading branch information
FreeMasen authored Jun 11, 2023
2 parents 034fa3b + af75500 commit 5811733
Show file tree
Hide file tree
Showing 18 changed files with 3,190 additions and 1,945 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/rust.yml
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

15 changes: 4 additions & 11 deletions Cargo.toml
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"]
Loading

0 comments on commit 5811733

Please sign in to comment.