File tree Expand file tree Collapse file tree
src/BaselineOfBlocSerialization Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2023 OpenSmock
3+ Copyright (c) 2023-2026 OpenSmock
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -76,13 +76,17 @@ Serialization or Materialization process return some exceptions in case of probl
7676
7777## Serialization backends
7878
79- Actually ` STON ` is the only backend used for serialization. The project architecture allow to add anothers serialization backends if needed.
79+ ` Stash ` and ` STON ` can be used as serialization backends.
80+
81+ The project architecture is flexible enough to accommodate the addition of more serialization backends if required.
8082
8183## Dependencies
8284
83- - [ Bloc ] ( https://github.com/pharo-graphics/Bloc )
85+ - [ Stash ] ( https://github.com/OpenSmock/stash )
8486- [ STON] ( https://github.com/svenvc/ston )
87+ - [ Alexandrie] ( https://github.com/pharo-graphics/Alexandrie )
88+ - [ Bloc] ( https://github.com/pharo-graphics/Bloc )
8589
8690## License
8791
88- This project is licensed under the MIT License - see the [ LICENSE] ( LICENSE ) file for details.
92+ This project is licensed under the MIT License - see the [ LICENSE] ( LICENSE ) file for details.
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ BaselineOfBlocSerialization >> baseline: spec [
2525{ #category : #accessing }
2626BaselineOfBlocSerialization >> dependency: spec [
2727
28+ " Serialization backends"
2829 spec
2930 baseline: ' Ston'
3031 with: [ spec repository: ' github://svenvc/ston/repository' ].
@@ -33,7 +34,12 @@ BaselineOfBlocSerialization >> dependency: spec [
3334 baseline: ' StashSerialization'
3435 with: [ spec repository: ' github://OpenSmock/Stash/src' ].
3536
37+ " Graphic librairies: this section should be removed when librairies will be integrated in Pharo"
38+ spec
39+ baseline: ' Alexandrie'
40+ with: [ spec repository: ' github://ThalesGroup/Alexandrie:dev' ].
41+
3642 spec
3743 baseline: ' Bloc'
38- with: [ spec repository: ' github://OpenSmock /Bloc:dev/src ' ].
44+ with: [ spec repository: ' github://ThalesGroup /Bloc:dev' ].
3945]
You can’t perform that action at this time.
0 commit comments