1[package] 2name = "git-repos" 3version = "0.1.0" 4edition = "2018" 5 6# Required to satisfy cargo but no `lib.rs` is expected to 7# exist within test data. 8[lib] 9path = "lib.rs" 10 11[dependencies] 12tracing = { git = "https://github.com/tokio-rs/tracing.git", branch = "master" } 13 14