Skip to content

Commit a141111

Browse files
committed
Remove unstable app flag
1 parent 906e121 commit a141111

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

.cursor/rules/cicd-patterns.mdc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,4 @@ When adding new CI checks:
5656
## Environment Variables in CI
5757

5858
- `RUSTFLAGS: -Dwarnings` enforced in CI
59-
- Feature flag testing: `-Funstable-mobile-app`
6059
- Cross-platform matrix: Ubuntu 24.04, macOS 14, Windows 2022

src/api/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2526,7 +2526,6 @@ struct LogsResponse {
25262526
}
25272527

25282528
/// VCS information for mobile app uploads
2529-
#[cfg(feature = "unstable-mobile-app")]
25302529
#[derive(Debug)]
25312530
pub struct VcsInfo<'a> {
25322531
pub head_sha: Option<&'a str>,

src/utils/vcs.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,11 @@ pub fn get_repo_from_remote(repo: &str) -> String {
216216
obj.id
217217
}
218218

219-
#[cfg(feature = "unstable-mobile-app")]
220219
pub fn get_provider_from_remote(remote: &str) -> String {
221220
let obj = VcsUrl::parse(remote);
222221
obj.provider
223222
}
224223

225-
#[cfg(feature = "unstable-mobile-app")]
226224
pub fn git_repo_remote_url(
227225
repo: &git2::Repository,
228226
cached_remote: &str,

0 commit comments

Comments
 (0)