Browse Source

avm: Move `tempfile` to `dev-dependencies` (#3330)

acheron 11 months ago
parent
commit
c25bd7b7eb
1 changed files with 4 additions and 2 deletions
  1. 4 2
      avm/Cargo.toml

+ 4 - 2
avm/Cargo.toml

@@ -13,8 +13,9 @@ path = "src/anchor/main.rs"
 
 [dependencies]
 anyhow = "1.0.32"
-cfg-if = "1.0.0"
 cargo_toml = "0.19.2"
+cfg-if = "1.0.0"
+chrono = "0.4"
 clap = { version = "4.5.17", features = ["derive"] }
 clap_complete = "4.5.26"
 dirs = "4.0.0"
@@ -22,5 +23,6 @@ once_cell = "1.8.0"
 reqwest = { version = "0.11.9", default-features = false, features = ["blocking", "json", "rustls-tls"] }
 semver = "1.0.4"
 serde = { version = "1.0.136", features = ["derive"] }
+
+[dev-dependencies]
 tempfile = "3.3.0"
-chrono = "0.4"