Skip to content

Commit d64e9dc

Browse files
committed
Merge branch 'rust_new' of github.com:DataEraserC/FileClassificationSolutions into rust_new
2 parents 53b8a6b + 810e695 commit d64e9dc

2 files changed

Lines changed: 94 additions & 0 deletions

File tree

.gitignore

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,94 @@ Cargo.lock
2020
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
2121
#.idea/
2222

23+
# Jetbrain related
24+
25+
# Covers JetBrains IDEs: IntelliJ, GoLand, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
26+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
27+
28+
# User-specific stuff
29+
.idea/**/workspace.xml
30+
.idea/**/tasks.xml
31+
.idea/**/usage.statistics.xml
32+
.idea/**/dictionaries
33+
.idea/**/shelf
34+
35+
# AWS User-specific
36+
.idea/**/aws.xml
37+
38+
# Generated files
39+
.idea/**/contentModel.xml
40+
41+
# Sensitive or high-churn files
42+
.idea/**/dataSources/
43+
.idea/**/dataSources.ids
44+
.idea/**/dataSources.local.xml
45+
.idea/**/sqlDataSources.xml
46+
.idea/**/dynamic.xml
47+
.idea/**/uiDesigner.xml
48+
.idea/**/dbnavigator.xml
49+
50+
# Gradle
51+
.idea/**/gradle.xml
52+
.idea/**/libraries
53+
54+
# Gradle and Maven with auto-import
55+
# When using Gradle or Maven with auto-import, you should exclude module files,
56+
# since they will be recreated, and may cause churn. Uncomment if using
57+
# auto-import.
58+
# .idea/artifacts
59+
# .idea/compiler.xml
60+
# .idea/jarRepositories.xml
61+
# .idea/modules.xml
62+
# .idea/*.iml
63+
# .idea/modules
64+
# *.iml
65+
# *.ipr
66+
67+
# CMake
68+
cmake-build-*/
69+
70+
# Mongo Explorer plugin
71+
.idea/**/mongoSettings.xml
72+
73+
# File-based project format
74+
*.iws
75+
76+
# IntelliJ
77+
out/
78+
79+
# mpeltonen/sbt-idea plugin
80+
.idea_modules/
81+
82+
# JIRA plugin
83+
atlassian-ide-plugin.xml
84+
85+
# Cursive Clojure plugin
86+
.idea/replstate.xml
87+
88+
# SonarLint plugin
89+
.idea/sonarlint/
90+
.idea/sonarlint.xml # see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119
91+
92+
# Crashlytics plugin (for Android Studio and IntelliJ)
93+
com_crashlytics_export_strings.xml
94+
crashlytics.properties
95+
crashlytics-build.properties
96+
fabric.properties
97+
98+
# Editor-based HTTP Client
99+
.idea/httpRequests
100+
http-client.private.env.json
101+
102+
# Android studio 3.1+ serialized cache file
103+
.idea/caches/build_file_checksums.ser
104+
105+
# Apifox Helper cache
106+
.idea/.cache/.Apifox_Helper
107+
.idea/ApifoxUploaderProjectSetting.xml
108+
109+
# Project related
110+
23111
*.db
24112
*.log
25113

nix/shell.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,20 @@ in
1010
nativeBuildInputs =
1111
[
1212
(rust-bin.stable.latest.default.override {
13+
# rustc cargo rust-std rust-mingw rust-docs rustfmt-preview clippy-preview
1314
extensions = [
1415
"rust-src"
1516
"rustfmt"
1617
"rust-analyzer"
1718
"clippy"
19+
# for rust-rover (?)
20+
# "rust-std"
1821
];
1922
})
2023

24+
# for rust-rover (?)
25+
# pkgs.rustup
26+
2127
nodePackages.cspell
2228

2329
pkgs.diesel-cli

0 commit comments

Comments
 (0)