-
Notifications
You must be signed in to change notification settings - Fork 85
/
Cargo.toml
36 lines (29 loc) · 1.29 KB
/
Cargo.toml
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
31
32
33
34
35
36
[package]
name = "sarif"
version = "0.0.0-reserved"
authors = { workspace = true }
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Representation of the SARIF specification in Rust"
documentation = "https://docs.rs/sarif"
readme = "README.md"
repository = "https://github.com/hashintel/hash/tree/main/libs/sarif"
keywords = ["no_std", "sarif", "serde", "static-analysis", "tools"]
categories = ["no-std", "data-structures", "development-tools", "parsing"]
publish = false
[dependencies]
# Public workspace dependencies
# Public third-party dependencies
semver = { version = ">=1", public = true, default-features = false }
serde = { version = ">=1", default-features = false, public = true, features = ["derive"], optional = true }
serde_json = { version = ">=1", public = true, default-features = false, features = ["alloc"], optional = true }
url = { version = ">=2", public = true, default-features = false }
uuid = { version = ">=1", public = true, default-features = false }
# Private workspace dependencies
# Private third-party dependencies
[features]
serde = ["dep:serde", "dep:serde_json", "semver/serde", "url/serde", "uuid/serde"]
[dev-dependencies]
jsonschema = { workspace = true }
[lints]
workspace = true