-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (28 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
35 lines (28 loc) · 785 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
31
32
33
34
35
# Copyright Gary Guo.
#
# SPDX-License-Identifier: MIT OR Apache-2.0
[package]
name = "klint"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
default-run = "klint"
[dependencies]
rusqlite = "0.38"
home = "0.5"
object = "0.38.0"
gimli = "0.33"
iced-x86 = { version = "1.21.0", default-features = false, features = ["std", "decoder", "gas"] }
[dev-dependencies]
compiletest_rs = { version = "0.11", features = [ "tmp" ] }
[[bin]]
name = "klint"
path = "src/main.rs"
[[bin]]
name = "klint-rustdoc"
path = "src/rustdoc.rs"
[package.metadata.rust-analyzer]
# This crate uses #![feature(rustc_private)]
rustc_private = true
[patch.crates-io]
compiletest_rs = { git = "https://github.com/Manishearth/compiletest-rs", rev = "63663557c6a28c645c506f54d08111cf028e1ac8" }