-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (24 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
30 lines (24 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "srcpos"
version = "1.1.0"
authors = ["Package <Aditrc@outlook.com>"]
edition = "2018"
license = "MIT"
description = "Structure of the location in the source code"
repository = "https://github.com/MeowType/srcpos"
readme = "README.md"
keywords = ["source", "position", "location", "sourcemap"]
categories = ["data-structures", "parsing", "text-processing", "development-tools::procedural-macro-helpers", "development-tools::debugging"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.serde]
default-features = false
optional = true
version = "1"
features = ["derive"]
[features]
default = ["serde"]
[package.metadata.docs.rs]
features = ["serde"]
[package.metadata.playground]
features = ["serde"]