Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor the inner logic of the crate to cleaner, faster and zero-copy code #12

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from 18 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
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

15 changes: 0 additions & 15 deletions CHANGELOG.md

This file was deleted.

34 changes: 12 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,25 @@
[package]
name = "annotate-snippets"
version = "0.6.1"
version = "0.1.0"
authors = ["Zibi Braniecki <[email protected]>"]
edition = "2018"
authors = ["Zibi Braniecki <[email protected]>"]
description = "Library for building code annotations"
license = "Apache-2.0/MIT"
repository = "https://github.com/rust-lang/annotate-snippets-rs"
readme = "README.md"
keywords = ["code", "analysis", "ascii", "errors", "debug"]

[badges]
travis-ci = { repository = "rust-lang/annotate-snippets-rs", branch = "master" }
coveralls = { repository = "rust-lang/annotate-snippets-rs", branch = "master", service = "github" }

maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ansi_term = { version = "^0.12", optional = true }
ansi_term = { version = "0.12", optional = true }
termcolor = { version = "1", optional = true }

[dev-dependencies]
glob = "^0.3"
serde_yaml = "^0.8"
serde = { version = "^1.0", features = ["derive"] }
difference = "^2.0"
ansi_term = "^0.12"
criterion = "0.3"

[[bench]]
name = "simple"
harness = false

[features]
default = []
color = ["ansi_term"]
color2 = ["termcolor"]
unicode = []
html = []

[[bench]]
name = "simple"
harness = false
201 changes: 0 additions & 201 deletions LICENSE-APACHE

This file was deleted.

19 changes: 0 additions & 19 deletions LICENSE-MIT

This file was deleted.

Loading