forked from endoli/lldb.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 725 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 725 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
[package]
name = "lldb"
version = "0.0.11"
edition = "2021"
authors = ["Bruce Mitchener <bruce.mitchener@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Rust-like bindings to the public LLDB API. LLDB is the debugger from the LLVM project and is the system debugger on macOS."
keywords = ["lldb", "debugger"]
categories = ["api-bindings", "development-tools::debugging"]
documentation = "https://docs.rs/lldb/latest/lldb/"
homepage = "https://github.com/endoli/lldb.rs"
repository = "https://github.com/endoli/lldb.rs"
[[example]]
name = "basic_synchronous"
[features]
graphql = ["dep:juniper"]
[dependencies]
libc = "0.2"
lldb-sys = "0.0.30"
juniper = { version = "0.15", optional = true }