--- a/Cargo.toml
+++ b/Cargo.toml
@@ -108,30 +108,6 @@
 console = { version = "0.15.4", optional = true }
 minijinja = { version = "2.5.0", optional = true }
 
-# upload
-bytesize = { version = "1.0.1", optional = true }
-configparser = { version = "3.0.3", optional = true }
-dirs = { version = "5.0.0", optional = true }
-multipart = { version = "0.18.0", features = [
-    "client",
-], default-features = false, optional = true }
-ureq = { version = "2.9.4", features = [
-    "gzip",
-    "json",
-    "socks-proxy",
-], default-features = false, optional = true }
-native-tls = { version = "0.2.8", optional = true }
-rustls = { version = "0.23", default-features = false, features = [
-    "logging",
-    "std",
-    "tls12",
-], optional = true }
-rustls-pemfile = { version = "2.1.0", optional = true }
-keyring = { version = "3", default-features = false, features = [
-    "linux-no-secret-service",
-], optional = true }
-wild = { version = "2.1.0", optional = true }
-
 # JSON schema
 schemars = { version = "0.8.16", optional = true }
 pretty_assertions = { version = "1.3.0", optional = true }
@@ -148,36 +124,12 @@
 which = "7.0.0"
 
 [features]
-default = ["full", "rustls"]
+default = ["full"]
 
-full = ["scaffolding", "upload"]
-
-upload = [
-    "ureq",
-    "multipart",
-    "configparser",
-    "bytesize",
-    "dialoguer/password",
-    "wild",
-    "dep:dirs",
-]
+full = ["scaffolding"]
 
 schemars = ["dep:schemars", "dep:pretty_assertions"]
 
-# keyring doesn't support *BSD so it's not enabled in `full` by default
-password-storage = ["upload", "keyring"]
-
-rustls = [
-    "dep:rustls",
-    "ureq?/tls",
-    "dep:rustls-pemfile",
-]
-native-tls = [
-    "dep:native-tls",
-    "ureq?/native-tls",
-    "dep:rustls-pemfile",
-]
-
 # project scaffolding
 scaffolding = ["dialoguer", "console", "minijinja", "unicode-xid"]
 
