stack-graphs 0.11.0

Name binding for arbitrary programming languages
Documentation
[package]
name = "stack-graphs"
version = "0.11.0"
description = "Name binding for arbitrary programming languages"
homepage = "https://github.com/github/stack-graphs/tree/main/stack-graphs"
repository = "https://github.com/github/stack-graphs/"
readme = "README.md"
license = "MIT OR Apache-2.0"
authors = [
  "GitHub <opensource+stack-graphs@github.com>",
  "Douglas Creager <dcreager@dcreager.net>"
]
edition = "2018"

[features]
copious-debugging = []
serde = ["dep:serde", "lsp-positions/serde"]
storage = ["rusqlite", "serde"]
visualization = ["serde", "serde_json"]

[lib]
# All of our tests are in the tests/it "integration" test executable.
test = false

[dependencies]
bitvec = "1.0"
controlled-option = "0.4"
either = "1.6"
enumset = "1.0"
fxhash = "0.2"
itertools = "0.10"
libc = "0.2"
lsp-positions = { version="0.3", path="../lsp-positions" }
rusqlite = { version = "0.28", optional=true, features = ["bundled", "functions"] }
serde = { version="1.0", optional=true, features = ["derive"] }
serde_json = { version="1.0", optional=true }
smallvec = { version="1.6", features=["union"] }
thiserror = { version="1.0" }

[dev-dependencies]
assert-json-diff = "2"
itertools = "0.10"
maplit = "1.0"
pretty_assertions = "0.7"
serde_json = { version="1.0" }

[package.metadata.docs.rs]
all-features = true