rust/src/libsyntax_pos/Cargo.toml
Inokentiy Babushkin dd8f7cd126
Moved FileMap construction to it's own constructor.
The rationale is that BOM stripping is needed for lazy source loading
for external crates, and duplication can be avoided by moving the
corresponding functionality to libsyntax_pos.
2017-06-10 16:09:51 +02:00

14 lines
278 B
TOML

[package]
authors = ["The Rust Project Developers"]
name = "syntax_pos"
version = "0.0.0"
[lib]
name = "syntax_pos"
path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
serialize = { path = "../libserialize" }
rustc_data_structures = { path = "../librustc_data_structures" }