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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
#![deny(missing_docs)] //! Structured access to the output of `cargo metadata` and `cargo --message-format=json`. //! Usually used from within a `cargo-*` executable //! //! See the [cargo book](https://doc.rust-lang.org/cargo/index.html) for //! details on cargo itself. //! //! ## Examples //! //! ```rust //! # extern crate cargo_metadata; //! # use std::path::Path; //! let mut args = std::env::args().skip_while(|val| !val.starts_with("--manifest-path")); //! //! let mut cmd = cargo_metadata::MetadataCommand::new(); //! let manifest_path = match args.next() { //! Some(ref p) if p == "--manifest-path" => { //! cmd.manifest_path(args.next().unwrap()); //! } //! Some(p) => { //! cmd.manifest_path(p.trim_start_matches("--manifest-path=")); //! } //! None => {} //! }; //! //! let _metadata = cmd.exec().unwrap(); //! ``` //! //! Pass features flags //! //! ```rust //! # // This should be kept in sync with the equivalent example in the readme. //! # extern crate cargo_metadata; //! # use std::path::Path; //! # fn main() { //! use cargo_metadata::{MetadataCommand, CargoOpt}; //! //! let _metadata = MetadataCommand::new() //! .manifest_path("./Cargo.toml") //! .features(CargoOpt::AllFeatures) //! .exec() //! .unwrap(); //! # } //! ``` //! //! Parse message-format output: //! //! ``` //! # extern crate cargo_metadata; //! use std::process::{Stdio, Command}; //! use cargo_metadata::Message; //! //! let mut command = Command::new("cargo") //! .args(&["build", "--message-format=json-render-diagnostics"]) //! .stdout(Stdio::piped()) //! .spawn() //! .unwrap(); //! //! let reader = std::io::BufReader::new(command.stdout.take().unwrap()); //! for message in cargo_metadata::Message::parse_stream(reader) { //! match message.unwrap() { //! Message::CompilerMessage(msg) => { //! println!("{:?}", msg); //! }, //! Message::CompilerArtifact(artifact) => { //! println!("{:?}", artifact); //! }, //! Message::BuildScriptExecuted(script) => { //! println!("{:?}", script); //! }, //! Message::BuildFinished(finished) => { //! println!("{:?}", finished); //! }, //! _ => () // Unknown message //! } //! } //! //! let output = command.wait().expect("Couldn't get cargo's exit status"); //! ``` use std::collections::HashMap; use std::env; use std::fmt; use std::path::PathBuf; use std::process::Command; use std::str::from_utf8; pub use semver::Version; pub use dependency::{Dependency, DependencyKind}; use diagnostic::Diagnostic; pub use errors::{Error, Result}; #[allow(deprecated)] pub use messages::parse_messages; pub use messages::{ Artifact, ArtifactProfile, BuildFinished, BuildScript, CompilerMessage, Message, MessageIter, }; use serde::{Deserialize, Serialize}; mod dependency; pub mod diagnostic; mod errors; mod messages; /// An "opaque" identifier for a package. /// It is possible to inspect the `repr` field, if the need arises, but its /// precise format is an implementation detail and is subject to change. /// /// `Metadata` can be indexed by `PackageId`. #[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)] #[serde(transparent)] pub struct PackageId { /// The underlying string representation of id. pub repr: String, } impl std::fmt::Display for PackageId { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Display::fmt(&self.repr, f) } } // Helpers for default metadata fields fn is_null(value: &serde_json::Value) -> bool { match value { serde_json::Value::Null => true, _ => false, } } #[derive(Clone, Serialize, Deserialize, Debug)] /// Starting point for metadata returned by `cargo metadata` pub struct Metadata { /// A list of all crates referenced by this crate (and the crate itself) pub packages: Vec<Package>, /// A list of all workspace members pub workspace_members: Vec<PackageId>, /// Dependencies graph pub resolve: Option<Resolve>, /// Workspace root pub workspace_root: PathBuf, /// Build directory pub target_directory: PathBuf, /// The workspace-level metadata object. Null if non-existent. #[serde(rename = "metadata", default, skip_serializing_if = "is_null")] pub workspace_metadata: serde_json::Value, version: usize, #[doc(hidden)] #[serde(skip)] __do_not_match_exhaustively: (), } impl Metadata { /// Get the root package of this metadata instance. pub fn root_package(&self) -> Option<&Package> { let root = self.resolve.as_ref()?.root.as_ref()?; self.packages.iter().find(|pkg| &pkg.id == root) } } impl<'a> std::ops::Index<&'a PackageId> for Metadata { type Output = Package; fn index(&self, idx: &'a PackageId) -> &Package { self.packages .iter() .find(|p| p.id == *idx) .unwrap_or_else(|| panic!("no package with this id: {:?}", idx)) } } #[derive(Clone, Serialize, Deserialize, Debug)] /// A dependency graph pub struct Resolve { /// Nodes in a dependencies graph pub nodes: Vec<Node>, /// The crate for which the metadata was read. pub root: Option<PackageId>, #[doc(hidden)] #[serde(skip)] __do_not_match_exhaustively: (), } #[derive(Clone, Serialize, Deserialize, Debug)] /// A node in a dependencies graph pub struct Node { /// An opaque identifier for a package pub id: PackageId, /// Dependencies in a structured format. /// /// `deps` handles renamed dependencies whereas `dependencies` does not. #[serde(default)] pub deps: Vec<NodeDep>, /// List of opaque identifiers for this node's dependencies. /// It doesn't support renamed dependencies. See `deps`. pub dependencies: Vec<PackageId>, /// Features enabled on the crate #[serde(default)] pub features: Vec<String>, #[doc(hidden)] #[serde(skip)] __do_not_match_exhaustively: (), } #[derive(Clone, Serialize, Deserialize, Debug)] /// A dependency in a node pub struct NodeDep { /// The name of the dependency's library target. /// If the crate was renamed, it is the new name. pub name: String, /// Package ID (opaque unique identifier) pub pkg: PackageId, /// The kinds of dependencies. /// /// This field was added in Rust 1.41. #[serde(default)] pub dep_kinds: Vec<DepKindInfo>, #[doc(hidden)] #[serde(skip)] __do_not_match_exhaustively: (), } #[derive(Clone, Serialize, Deserialize, Debug)] /// Information about a dependency kind. pub struct DepKindInfo { /// The kind of dependency. #[serde(deserialize_with = "dependency::parse_dependency_kind")] pub kind: DependencyKind, /// The target platform for the dependency. /// /// This is `None` if it is not a target dependency. /// /// Use the [`Display`] trait to access the contents. /// /// By default all platform dependencies are included in the resolve /// graph. Use Cargo's `--filter-platform` flag if you only want to /// include dependencies for a specific platform. /// /// [`Display`]: std::fmt::Display pub target: Option<dependency::Platform>, #[doc(hidden)] #[serde(skip)] __do_not_match_exhaustively: (), } #[derive(Clone, Serialize, Deserialize, Debug)] /// One or more crates described by a single `Cargo.toml` /// /// Each [`target`][Package::targets] of a `Package` will be built as a crate. /// For more information, see <https://doc.rust-lang.org/book/ch07-01-packages-and-crates.html>. pub struct Package { /// Name as given in the `Cargo.toml` pub name: String, /// Version given in the `Cargo.toml` pub version: Version, /// Authors given in the `Cargo.toml` #[serde(default)] pub authors: Vec<String>, /// An opaque identifier for a package pub id: PackageId, /// The source of the package, e.g. /// crates.io or `None` for local projects. pub source: Option<Source>, /// Description as given in the `Cargo.toml` pub description: Option<String>, /// List of dependencies of this particular package pub dependencies: Vec<Dependency>, /// License as given in the `Cargo.toml` pub license: Option<String>, /// If the package is using a nonstandard license, this key may be specified instead of /// `license`, and must point to a file relative to the manifest. pub license_file: Option<PathBuf>, /// Targets provided by the crate (lib, bin, example, test, ...) pub targets: Vec<Target>, /// Features provided by the crate, mapped to the features required by that feature. pub features: HashMap<String, Vec<String>>, /// Path containing the `Cargo.toml` pub manifest_path: PathBuf, /// Categories as given in the `Cargo.toml` #[serde(default)] pub categories: Vec<String>, /// Keywords as given in the `Cargo.toml` #[serde(default)] pub keywords: Vec<String>, /// Readme as given in the `Cargo.toml` pub readme: Option<PathBuf>, /// Repository as given in the `Cargo.toml` // can't use `url::Url` because that requires a more recent stable compiler pub repository: Option<String>, /// Homepage as given in the `Cargo.toml` /// /// On versions of cargo before 1.49, this will always be [`None`]. pub homepage: Option<String>, /// Documentation URL as given in the `Cargo.toml` /// /// On versions of cargo before 1.49, this will always be [`None`]. pub documentation: Option<String>, /// Default Rust edition for the package /// /// Beware that individual targets may specify their own edition in /// [`Target::edition`]. #[serde(default = "edition_default")] pub edition: String, /// Contents of the free form package.metadata section /// /// This contents can be serialized to a struct using serde: /// /// ```rust /// use serde::Deserialize; /// use serde_json::json; /// /// #[derive(Debug, Deserialize)] /// struct SomePackageMetadata { /// some_value: i32, /// } /// /// fn main() { /// let value = json!({ /// "some_value": 42, /// }); /// /// let package_metadata: SomePackageMetadata = serde_json::from_value(value).unwrap(); /// assert_eq!(package_metadata.some_value, 42); /// } /// /// ``` #[serde(default, skip_serializing_if = "is_null")] pub metadata: serde_json::Value, /// The name of a native library the package is linking to. pub links: Option<String>, /// List of registries to which this package may be published. /// /// Publishing is unrestricted if `None`, and forbidden if the `Vec` is empty. /// /// This is always `None` if running with a version of Cargo older than 1.39. pub publish: Option<Vec<String>>, #[doc(hidden)] #[serde(skip)] __do_not_match_exhaustively: (), } impl Package { /// Full path to the license file if one is present in the manifest pub fn license_file(&self) -> Option<PathBuf> { self.license_file.as_ref().map(|file| { self.manifest_path .parent() .unwrap_or(&self.manifest_path) .join(file) }) } /// Full path to the readme file if one is present in the manifest pub fn readme(&self) -> Option<PathBuf> { self.readme .as_ref() .map(|file| self.manifest_path.join(file)) } } /// The source of a package such as crates.io. #[derive(Clone, Serialize, Deserialize, Debug)] #[serde(transparent)] pub struct Source { /// The underlying string representation of a source. pub repr: String, } impl Source { /// Returns true if the source is crates.io. pub fn is_crates_io(&self) -> bool { self.repr == "registry+https://github.com/rust-lang/crates.io-index" } } impl std::fmt::Display for Source { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Display::fmt(&self.repr, f) } } #[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq, Hash)] /// A single target (lib, bin, example, ...) provided by a crate pub struct Target { /// Name as given in the `Cargo.toml` or generated from the file name pub name: String, /// Kind of target ("bin", "example", "test", "bench", "lib") pub kind: Vec<String>, /// Almost the same as `kind`, except when an example is a library instead of an executable. /// In that case `crate_types` contains things like `rlib` and `dylib` while `kind` is `example` #[serde(default)] pub crate_types: Vec<String>, #[serde(default)] #[serde(rename = "required-features")] /// This target is built only if these features are enabled. /// It doesn't apply to `lib` targets. pub required_features: Vec<String>, /// Path to the main source file of the target pub src_path: PathBuf, /// Rust edition for this target #[serde(default = "edition_default")] pub edition: String, /// Whether or not this target has doc tests enabled, and the target is /// compatible with doc testing. /// /// This is always `true` if running with a version of Cargo older than 1.37. #[serde(default = "default_true")] pub doctest: bool, /// Whether or not this target is tested by default by `cargo test`. /// /// This is always `true` if running with a version of Cargo older than 1.47. #[serde(default = "default_true")] pub test: bool, #[doc(hidden)] #[serde(skip)] __do_not_match_exhaustively: (), } fn default_true() -> bool { true } fn edition_default() -> String { "2015".to_string() } /// Cargo features flags #[derive(Debug, Clone)] pub enum CargoOpt { /// Run cargo with `--features-all` AllFeatures, /// Run cargo with `--no-default-features` NoDefaultFeatures, /// Run cargo with `--features <FEATURES>` SomeFeatures(Vec<String>), } /// A builder for configurating `cargo metadata` invocation. #[derive(Debug, Clone, Default)] pub struct MetadataCommand { cargo_path: Option<PathBuf>, manifest_path: Option<PathBuf>, current_dir: Option<PathBuf>, no_deps: bool, /// Collections of `CargoOpt::SomeFeatures(..)` features: Vec<String>, /// Latched `CargoOpt::AllFeatures` all_features: bool, /// Latched `CargoOpt::NoDefaultFeatures` no_default_features: bool, other_options: Vec<String>, } impl MetadataCommand { /// Creates a default `cargo metadata` command, which will look for /// `Cargo.toml` in the ancestors of the current directory. pub fn new() -> MetadataCommand { MetadataCommand::default() } /// Path to `cargo` executable. If not set, this will use the /// the `$CARGO` environment variable, and if that is not set, will /// simply be `cargo`. pub fn cargo_path(&mut self, path: impl Into<PathBuf>) -> &mut MetadataCommand { self.cargo_path = Some(path.into()); self } /// Path to `Cargo.toml` pub fn manifest_path(&mut self, path: impl Into<PathBuf>) -> &mut MetadataCommand { self.manifest_path = Some(path.into()); self } /// Current directory of the `cargo metadata` process. pub fn current_dir(&mut self, path: impl Into<PathBuf>) -> &mut MetadataCommand { self.current_dir = Some(path.into()); self } /// Output information only about the root package and don't fetch dependencies. pub fn no_deps(&mut self) -> &mut MetadataCommand { self.no_deps = true; self } /// Which features to include. /// /// Call this multiple times to specify advanced feature configurations: /// /// ```no_run /// # use cargo_metadata::{CargoOpt, MetadataCommand}; /// MetadataCommand::new() /// .features(CargoOpt::NoDefaultFeatures) /// .features(CargoOpt::SomeFeatures(vec!["feat1".into(), "feat2".into()])) /// .features(CargoOpt::SomeFeatures(vec!["feat3".into()])) /// // ... /// # ; /// ``` /// /// # Panics /// /// `cargo metadata` rejects multiple `--no-default-features` flags. Similarly, the `features()` /// method panics when specifiying multiple `CargoOpt::NoDefaultFeatures`: /// /// ```should_panic /// # use cargo_metadata::{CargoOpt, MetadataCommand}; /// MetadataCommand::new() /// .features(CargoOpt::NoDefaultFeatures) /// .features(CargoOpt::NoDefaultFeatures) // <-- panic! /// // ... /// # ; /// ``` /// /// The method also panics for multiple `CargoOpt::AllFeatures` arguments: /// /// ```should_panic /// # use cargo_metadata::{CargoOpt, MetadataCommand}; /// MetadataCommand::new() /// .features(CargoOpt::AllFeatures) /// .features(CargoOpt::AllFeatures) // <-- panic! /// // ... /// # ; /// ``` pub fn features(&mut self, features: CargoOpt) -> &mut MetadataCommand { match features { CargoOpt::SomeFeatures(features) => self.features.extend(features), CargoOpt::NoDefaultFeatures => { assert!( !self.no_default_features, "Do not supply CargoOpt::NoDefaultFeatures more than once!" ); self.no_default_features = true; } CargoOpt::AllFeatures => { assert!( !self.all_features, "Do not supply CargoOpt::AllFeatures more than once!" ); self.all_features = true; } } self } /// Arbitrary command line flags to pass to `cargo`. These will be added /// to the end of the command line invocation. pub fn other_options(&mut self, options: impl Into<Vec<String>>) -> &mut MetadataCommand { self.other_options = options.into(); self } /// Builds a command for `cargo metadata`. This is the first /// part of the work of `exec`. pub fn cargo_command(&self) -> Command { let cargo = self .cargo_path .clone() .or_else(|| env::var("CARGO").map(PathBuf::from).ok()) .unwrap_or_else(|| PathBuf::from("cargo")); let mut cmd = Command::new(cargo); cmd.args(&["metadata", "--format-version", "1"]); if self.no_deps { cmd.arg("--no-deps"); } if let Some(path) = self.current_dir.as_ref() { cmd.current_dir(path); } if !self.features.is_empty() { cmd.arg("--features").arg(self.features.join(",")); } if self.all_features { cmd.arg("--all-features"); } if self.no_default_features { cmd.arg("--no-default-features"); } if let Some(manifest_path) = &self.manifest_path { cmd.arg("--manifest-path").arg(manifest_path.as_os_str()); } cmd.args(&self.other_options); cmd } /// Parses `cargo metadata` output. `data` must have been /// produced by a command built with `cargo_command`. pub fn parse<T: AsRef<str>>(data: T) -> Result<Metadata> { let meta = serde_json::from_str(data.as_ref())?; Ok(meta) } /// Runs configured `cargo metadata` and returns parsed `Metadata`. pub fn exec(&self) -> Result<Metadata> { let output = self.cargo_command().output()?; if !output.status.success() { return Err(Error::CargoMetadata { stderr: String::from_utf8(output.stderr)?, }); } let stdout = from_utf8(&output.stdout)? .lines() .find(|line| line.starts_with('{')) .ok_or_else(|| Error::NoJson)?; Self::parse(stdout) } }