Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,441 changes: 659 additions & 782 deletions Cargo.lock

Large diffs are not rendered by default.

56 changes: 27 additions & 29 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,54 +8,52 @@ repository = "https://github.com/dflemstr/tin"
edition = "2018"

[build-dependencies]
lalrpop = "0.16.2"
lalrpop = "0.17.1"
failure = "0.1.5"
regex = "1.1.0"
walkdir = "2.2.7"
regex = "1.2.1"
walkdir = "2.2.9"

[dependencies]
cranelift = "0.26.0"
cranelift-module = "0.26.0"
cranelift-simplejit = "0.26.0"
cranelift = "0.38.0"
cranelift-module = "0.38.0"
cranelift-simplejit = "0.38.0"
dot = "0.1.4"
env_logger = "0.6.0"
env_logger = "0.6.2"
failure = "0.1.5"
lalrpop-util = "0.16.2"
log = "0.4.6"
regex = "1.1.0"
specs = { version = "0.14.3", default_features = false }
specs-derive = "0.4.0"
specs-visitor-derive = { version = "0.3.0", path = "specs-visitor-derive" }
specs-visitor = { version = "0.3.0", path = "specs-visitor", default_features = false }
pretty_env_logger = "0.3.0"
structopt = "0.2.14"
lazy_static = "1.2.0"
byteorder = "1.2.7"
rayon = { version = "1.0.3", optional = true }
lalrpop-util = "0.17.1"
log = "0.4.8"
regex = "1.2.1"
pretty_env_logger = "0.3.1"
structopt = "0.2.18"
lazy_static = "1.3.0"
byteorder = "1.3.2"
itertools = "0.8.0"
codespan = "0.2.0"
codespan-reporting = "0.2.0"
codespan = "0.3.0"
codespan-reporting = "0.3.0"
enum-primitive-derive = "0.1.2"
num-traits = "0.2.6"
num-traits = "0.2.8"
salsa = "0.13.0"
relative-path = "0.4.0"
ordered-float = "1.0.2"
cranelift-native = "0.38.0"

[features]
default = ["parallel"]
nightly = ["specs/nightly"]
parallel = ["rayon", "specs/parallel", "specs-visitor/parallel"]
nightly = []
parallel = []
test-render-graphs = []

[profile.release]
debug = true
lto = true
codegen-units = 1

[workspace]
members = ["specs-visitor", "specs-visitor-derive", "tin-fuzz-target"]
#[workspace]
#members = ["syntax"]

[dev-dependencies]
pretty_assertions = "0.5.1"
pretty_assertions = "0.6.1"

[dev-dependencies.cargo-husky]
git = "https://github.com/dflemstr/cargo-husky.git"
branch = "run-for-all"
version = "1.4.0"
features = ["prepush-hook", "precommit-hook", "run-for-all", "run-cargo-test", "run-cargo-check", "run-cargo-clippy", "run-cargo-fmt"]
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::path;
fn main() -> Result<(), failure::Error> {
use std::io::Write;

println!("cargo:rerun-if-changed=src/parser/tin.lalrpop");
println!("cargo:rerun-if-changed=src/syntax/parser/grammar.lalrpop");
lalrpop::process_root().unwrap();

let out_dir_str = env::var_os("OUT_DIR").unwrap();
Expand Down
20 changes: 0 additions & 20 deletions specs-visitor-derive/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion specs-visitor-derive/release.toml

This file was deleted.

78 changes: 0 additions & 78 deletions specs-visitor-derive/src/lib.rs

This file was deleted.

130 changes: 0 additions & 130 deletions specs-visitor-derive/src/tests.rs

This file was deleted.

17 changes: 0 additions & 17 deletions specs-visitor/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion specs-visitor/release.toml

This file was deleted.

Loading