-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdb-service-ffi.code-workspace
More file actions
48 lines (40 loc) · 1.27 KB
/
db-service-ffi.code-workspace
File metadata and controls
48 lines (40 loc) · 1.27 KB
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
{
"folders": [
{
"path": "db-service-ffi"
},
{
"path": "uniffi-bindgen"
}
],
"settings": {
"rust-analyzer.diagnostics.disabled":["unresolved-proc-macro"],
"rust-analyzer.check.targets": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-apple-ios-sim",
"aarch64-apple-ios"
],
"rust-analyzer.cargo.target": "aarch64-apple-ios-sim",
// Comment or Uncomment the following for rust-analyzer to work with #[cfg(target_os = "android")]
// At a time only one target is active and the last 'rust-analyzer.cargo.target' used
// "rust-analyzer.cargo.target": "aarch64-linux-android",
// Need these for argon2_sys build
/*
"rust-analyzer.server.extraEnv": {
"CARGO_TARGET_DIR": "target",
"CC_aarch64-linux-android":"/Users/jeyasankar/Library/Android/sdk/ndk/25.1.8937393/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang",
"AR_aarch64_linux_android":"/Users/jeyasankar/Library/Android/sdk/ndk/25.1.8937393/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar"
},
*/
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"*.mutable": {
"underline": false,
}
}
},
"rust-analyzer.checkOnSave": true
}
}