-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
47 lines (39 loc) · 1.1 KB
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
37
38
39
40
41
42
43
44
45
46
47
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jimyag/libvirt-rs"
homepage = "https://github.com/jimyag/libvirt-rs"
documentation = "https://docs.rs/libvirt-pure"
authors = ["jimyag"]
keywords = ["libvirt", "virtualization", "kvm", "qemu"]
categories = ["api-bindings", "virtualization"]
rust-version = "1.75"
[workspace.dependencies]
# Internal crates (use version for crates.io, path for local dev)
libvirt-xdr = { version = "0.1.1", path = "crates/libvirt-xdr" }
libvirt-codegen = { version = "0.1.1", path = "crates/libvirt-codegen" }
libvirt-pure = { version = "0.1.1", path = "crates/libvirt" }
# Serialization
serde = { version = "1", features = ["derive"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
# TLS
tokio-rustls = "0.26"
rustls = "0.23"
# Code generation
quote = "1"
syn = { version = "2", features = ["full"] }
proc-macro2 = "1"
prettyplease = "0.2"
# Parsing
nom = "7"
# Utilities
thiserror = "2"
bytes = "1"
dashmap = "6"
heck = "0.5"
async-trait = "0.1"