File tree 10 files changed +26
-9
lines changed
core/driver_lib/cli_utils
10 files changed +26
-9
lines changed Original file line number Diff line number Diff line change 1
1
#include < ydb/core/protos/blobstorage.pb.h>
2
2
#include < ydb/core/protos/config.pb.h>
3
- #include < ydb/library/yaml_config/yaml_config_parser.h>
3
+ #include < ydb/library/yaml_config/deprecated/ yaml_config_parser.h>
4
4
#include " cli.h"
5
5
#include " cli_cmds.h"
6
6
#include " proto_common.h"
Original file line number Diff line number Diff line change 4
4
#include < ydb/core/base/path.h>
5
5
#include < ydb/library/yaml_config/yaml_config.h>
6
6
#include < ydb/core/driver_lib/run/run.h>
7
- #include < ydb/library/yaml_config/yaml_config_parser.h>
7
+ #include < ydb/library/yaml_config/deprecated/ yaml_config_parser.h>
8
8
#include < ydb/public/lib/deprecated/kicli/kicli.h>
9
9
#include < util/digest/city.h>
10
10
#include < util/random/random.h>
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ PEERDIR(
52
52
ydb/library/aclib
53
53
ydb/library/folder_service/proto
54
54
ydb/library/yaml_config
55
+ ydb/library/yaml_config/deprecated
55
56
ydb/public/api/grpc
56
57
ydb/public/api/grpc/draft
57
58
ydb/public/lib/deprecated/client
Original file line number Diff line number Diff line change
1
+ LIBRARY()
2
+
3
+ SRCS(
4
+ yaml_config_parser.cpp
5
+ yaml_config_parser.h
6
+ )
7
+
8
+ PEERDIR(
9
+ ydb/library/yaml_config
10
+ )
11
+
12
+ END()
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 5
5
yaml_config_ut.cpp
6
6
)
7
7
8
+ PEERDIR(
9
+ ydb/library/yaml_config/deprecated
10
+ )
11
+
8
12
END()
Original file line number Diff line number Diff line change 5
5
console_dumper.h
6
6
yaml_config.cpp
7
7
yaml_config.h
8
- yaml_config_parser.cpp
9
- yaml_config_parser.h
10
8
)
11
9
12
10
PEERDIR(
13
11
contrib/libs/openssl
14
12
contrib/libs/protobuf
15
13
contrib/libs/yaml-cpp
16
- ydb/library/actors/core
17
14
library/cpp/protobuf/json
18
- ydb/library/fyamlcpp
19
15
ydb/core/base
20
16
ydb/core/cms/console/util
21
17
ydb/core/erasure
22
18
ydb/core/protos
19
+ ydb/library/actors/core
20
+ ydb/library/fyamlcpp
23
21
ydb/library/yaml_config/public
24
22
)
25
23
26
24
END()
27
25
28
26
RECURSE(
27
+ deprecated
29
28
public
30
- validator
31
29
static_validator
30
+ validator
32
31
)
33
32
34
33
RECURSE_FOR_TESTS(
Original file line number Diff line number Diff line change 1
1
#include " yaml_config.h"
2
2
3
- #include " yaml_config_parser.h"
3
+ #include < ydb/library/yaml_config/deprecated/ yaml_config_parser.h>
4
4
5
5
#include < ydb/core/base/appdata.h>
6
6
Original file line number Diff line number Diff line change 1
1
#include " yaml_config.h"
2
- #include " yaml_config_parser.h"
2
+
3
+ #include < ydb/library/yaml_config/deprecated/yaml_config_parser.h>
3
4
4
5
#include < library/cpp/testing/unittest/registar.h>
5
6
You can’t perform that action at this time.
0 commit comments