Skip to content

Commit a671dc5

Browse files
committed
add 添加tdengine
1 parent 1ba743c commit a671dc5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1412
-492
lines changed

.gitignore

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
### VisualStudioCode template
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/tasks.json
5+
!.vscode/launch.json
6+
!.vscode/extensions.json
7+
*.code-workspace
8+
9+
# Local History for Visual Studio Code
10+
.history/
11+
12+
### JetBrains template
13+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
14+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
15+
16+
# User-specific stuff
17+
.idea/**/workspace.xml
18+
.idea/**/tasks.xml
19+
.idea/**/usage.statistics.xml
20+
.idea/**/dictionaries
21+
.idea/**/shelf
22+
23+
# Generated files
24+
.idea/**/contentModel.xml
25+
26+
# Sensitive or high-churn files
27+
.idea/**/dataSources/
28+
.idea/**/dataSources.ids
29+
.idea/**/dataSources.local.xml
30+
.idea/**/sqlDataSources.xml
31+
.idea/**/dynamic.xml
32+
.idea/**/uiDesigner.xml
33+
.idea/**/dbnavigator.xml
34+
35+
# Gradle
36+
.idea/**/gradle.xml
37+
.idea/**/libraries
38+
39+
# Gradle and Maven with auto-import
40+
# When using Gradle or Maven with auto-import, you should exclude module files,
41+
# since they will be recreated, and may cause churn. Uncomment if using
42+
# auto-import.
43+
# .idea/artifacts
44+
# .idea/compiler.xml
45+
# .idea/jarRepositories.xml
46+
# .idea/modules.xml
47+
# .idea/*.iml
48+
# .idea/modules
49+
# *.iml
50+
# *.ipr
51+
52+
# CMake
53+
cmake-build-*/
54+
55+
# Mongo Explorer plugin
56+
.idea/**/mongoSettings.xml
57+
58+
# File-based project format
59+
*.iws
60+
61+
# IntelliJ
62+
out/
63+
64+
# mpeltonen/sbt-idea plugin
65+
.idea_modules/
66+
67+
# JIRA plugin
68+
atlassian-ide-plugin.xml
69+
70+
# Cursive Clojure plugin
71+
.idea/replstate.xml
72+
73+
# Crashlytics plugin (for Android Studio and IntelliJ)
74+
com_crashlytics_export_strings.xml
75+
crashlytics.properties
76+
crashlytics-build.properties
77+
fabric.properties
78+
79+
# Editor-based Rest Client
80+
.idea/httpRequests
81+
82+
# Android studio 3.1+ serialized cache file
83+
.idea/caches/build_file_checksums.ser
84+
85+
!.gitignore
86+
.idea/
87+
*.log

go.mod

+8-12
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.22.4
66

77
require (
88
github.com/antlr4-go/antlr/v4 v4.13.1
9-
github.com/eclipse/paho.mqtt.golang v1.3.5
9+
github.com/eclipse/paho.mqtt.golang v1.4.3
1010
github.com/gin-gonic/gin v1.8.1
1111
github.com/go-eden/routine v0.0.3
1212
github.com/go-redis/redis/v8 v8.11.5
@@ -15,15 +15,14 @@ require (
1515
github.com/goburrow/cache v0.1.4
1616
github.com/isyscore/isc-gobase v1.4.13
1717
github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
18-
github.com/magiconair/properties v1.8.5
1918
github.com/nats-io/nats.go v1.36.0
2019
github.com/nsqio/go-nsq v1.1.0
2120
github.com/robfig/cron v1.2.0
2221
github.com/satori/go.uuid v1.2.0
23-
github.com/simonalong/gole v1.0.2
24-
github.com/simonalong/mikilin-go v1.0.2-0.20211208074724-b25f05b74f31
22+
github.com/simonalong/gole v1.3.0
2523
github.com/sirupsen/logrus v1.8.1
26-
go.etcd.io/etcd/client/v3 v3.5.5
24+
github.com/taosdata/driver-go/v3 v3.5.6
25+
go.etcd.io/etcd/client/v3 v3.5.6
2726
google.golang.org/grpc v1.47.0
2827
google.golang.org/protobuf v1.28.1
2928
gopkg.in/yaml.v2 v2.4.0
@@ -34,6 +33,7 @@ require (
3433
require (
3534
github.com/dlclark/regexp2 v1.4.0 // indirect
3635
github.com/goccy/go-json v0.9.7 // indirect
36+
github.com/google/uuid v1.3.0 // indirect
3737
github.com/iris-contrib/go.uuid v2.0.0+incompatible // indirect
3838
github.com/jinzhu/inflection v1.0.0 // indirect
3939
github.com/jinzhu/now v1.1.5 // indirect
@@ -42,11 +42,11 @@ require (
4242
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
4343
github.com/rs/zerolog v1.26.1 // indirect
4444
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
45+
golang.org/x/sync v0.7.0 // indirect
4546
)
4647

4748
require (
4849
cloud.google.com/go v0.93.3 // indirect
49-
github.com/antonmedv/expr v1.9.0 // indirect
5050
github.com/cespare/xxhash/v2 v2.1.2 // indirect
5151
github.com/coreos/go-semver v0.3.0 // indirect
5252
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
@@ -61,18 +61,14 @@ require (
6161
github.com/gorilla/websocket v1.5.0 // indirect
6262
github.com/json-iterator/go v1.1.12 // indirect
6363
github.com/leodido/go-urn v1.2.1 // indirect
64-
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible // indirect
65-
github.com/lestrrat-go/strftime v1.0.6 // indirect
6664
github.com/mattn/go-isatty v0.0.14 // indirect; indirect¬¬¬
6765
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6866
github.com/modern-go/reflect2 v1.0.2 // indirect
6967
github.com/nats-io/nkeys v0.4.7 // indirect
7068
github.com/nats-io/nuid v1.0.1 // indirect
71-
github.com/pkg/errors v0.9.1 // indirect
72-
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5 // indirect
7369
github.com/ugorji/go/codec v1.2.7 // indirect
74-
go.etcd.io/etcd/api/v3 v3.5.5 // indirect
75-
go.etcd.io/etcd/client/pkg/v3 v3.5.5 // indirect
70+
go.etcd.io/etcd/api/v3 v3.5.6 // indirect
71+
go.etcd.io/etcd/client/pkg/v3 v3.5.6 // indirect
7672
go.uber.org/atomic v1.7.0
7773
go.uber.org/multierr v1.6.0 // indirect
7874
go.uber.org/zap v1.17.0 // indirect

0 commit comments

Comments
 (0)